2

Chart Image

I have created the above chart using chart.js library. I want to change the horizontal and the vertical axis colors in this chart. I have tried 'scaleFontColor' but it changes color of only labels.

var myBarChart = new Chart(ctx).Bar(data, { scaleFontColor: "white" }); 

Is there any other property for changing the color of horizontal and vertical axis?

1 Answer 1

2

I found this fiddle with an example chart in it.

You can change the axes color with the property:

{
    scaleLineColor: "red"
}
1
  • No worries, if you could accept as answer that would be great :) Commented May 19, 2016 at 11:23