|
How to: |
The deleteSlice property deletes a slice from a pie chart (effectively, assigns the slice a transparent color).
"series":
[
{
"series": number,
"group": number,
"deleteSlice": boolean,
}
]where:
Is a zero-based series number or "all" to delete all slices. If the series does not exist in the chart, the property is ignored.
For multi-pie charts, is an optional zero-based group (pie) number. If the group does not exist in the chart, the property is ignored. If a group number is not specified, the slice is deleted from all pies.
Can be:
The following request generates a pie chart, but deletes the slices for series 2, 4, and 6:
GRAPH FILE WF_RETAIL_LITE
SUM COGS_US
ACROSS PRODUCT_CATEGORY
ON GRAPH PCHOLD FORMAT JSCHART
ON GRAPH SET LOOKGRAPH PIE
ON GRAPH SET STYLE *
*GRAPH_JS
"series": [
{"series": 0, "color": "cyan"},
{"series": 1, "color": "bisque"},
{"series": 2, "color": "slateblue", "deleteSlice": true},
{"series": 3, "color": "red"},
{"series": 4, "color": "green", "deleteSlice": true},
{"series": 5, "color": "yellow"},
{"series": 6, "color": "blue", "deleteSlice": true}]
*END
ENDSTYLE
ENDThe output is;

| WebFOCUS | |
|
Feedback |