EJSC.BarSeries.useColorArray
See Also
|
Definition
boolean useColorArray = false
Description
Defines whether to make use of the EJSC.BarSeries.defaultColors property
Example
>> Use the color array to make a chart of multi colored bars
var chart = new EJSC.Chart("chart"); var bar = chart.addSeries(new EJSC.BarSeries( data, { useColorArray: true } )); |