This topic is locked

Bar chart colour

8/1/2017 2:33:46 AM
PHPRunner General questions
C
chriscoogan author

How can I change the colour of the sections of my bar chart?

F
firecloud 8/1/2017



How can I change the colour of the sections of my bar chart?


try



// Gets series by index, 0 - first series, 1 -second series etc

var series = chart.getSeriesAt(0);

series.color(["#FEFEFE", "#424242"], 0.69, 0.59);


more details

chartmodify