Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change Y Axis vertical line color in Highcharts

I've tried to look after a function that can change the vertical yAxis line color, but without luck.

Which function can I use for changing the color?

image

This is the color I want to change, so 77, 78, 79 etc is another color.

Hope someone can help :-)

like image 950
Simon Thomsen Avatar asked Dec 14 '14 11:12

Simon Thomsen


1 Answers

You can use style in yAxis.labels for the label colors, and gridLineColor for the line colors:

yAxis: {
    labels: {
        style: {
            color: 'red'
        }
    },
    gridLineColor: 'red'
}

http://jsfiddle.net/fehjnp5a/1/

like image 184
Raein Hashemi Avatar answered Nov 15 '22 00:11

Raein Hashemi