How to: |
A group number is a zero-based number that represents a group in the request.
{series: number, group: number, property: value, ..., property: value}
where:
Defines the series for the selected group.
Is a zero-based number. If the group does not exist in the chart, the property is ignored. If a group number is not specified, the properties are applied to all risers in the series.
Is a supported series property and its value.
The following request generates a vertical bar chart and defines a color for each series. It defines a different color (red) for group 4 in series 2:
GRAPH FILE WFLITE
SUM COGS_US GROSS_PROFIT_US REVENUE_US DISCOUNT_US
ACROSS PRODUCT_CATEGORY
ON GRAPH HOLD FORMAT JSCHART
ON GRAPH SET LOOKGRAPH VBAR
ON GRAPH SET STYLE *
*GRAPH_JS
series: [
{series: 0, color: 'cyan'},
{series: 1, color: 'green'},
{series: 2, group:4, color: 'red'},
{series: 2, color: 'slateblue'},
{series: 3, color: 'orange'},
]
*END
ENDSTYLE
END
On the output, the series 2 risers are all slate blue except for the red one in group 4:
Information Builders |