How can we change the series colors on a bar chart?
Hi,
You can either create your own theme as described in the following thread:
[url]Dashboard Designer Styling]
or change the color of a particular series by adding the following code to preRender handler on Dashboard -> Advanced tab:
config.series[0].color = ‘blue’;
config.series[1].color = ‘#CCCCCC’;
Thanks Dmitry It Works great with the preRender handler