Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to draw a vertical line on HighCharts?

Tags:

highcharts

I want to trace a vertical time line on the current day, but I didn't found solution on HighCharts documentation.

Like this :

enter image description here

like image 847
R3tep Avatar asked Jan 29 '14 10:01

R3tep


1 Answers

You're looking for a plot line. See the documentation here: http://api.highcharts.com/highcharts#xAxis.plotLines.

The basic format is:

xAxis: {
    plotLines: [{
        color: '#FF0000', // Red
        width: 2,
        value: 5.5 // Position, you'll have to translate this to the values on your x axis
    }]
},
like image 82
gpgekko Avatar answered Sep 20 '22 22:09

gpgekko