jimbo2087
jimbo2087

Reputation: 1054

How to color pictured bars in Highstock chart

How can I color these bars in a Highstock chart above the xaxis label and within the navigator?

highstock bars

Upvotes: 0

Views: 24

Answers (1)

ppotaczek
ppotaczek

Reputation: 39149

Use tickColor for a chart and gridLineColor for a navigator.

    xAxis: {
        tickColor: 'red'
    },
    navigator: {
        xAxis: {
            gridLineColor: 'red'
        }
    }

Live demo: http://jsfiddle.net/BlackLabel/w71zvfna/

API Reference:

https://api.highcharts.com/highstock/xAxis.tickColor

https://api.highcharts.com/highstock/navigator.xAxis.gridLineColor

Upvotes: 1

Related Questions