How to draw a vertical line on HighCharts?

淺唱寂寞╮ 提交于 2019-12-20 11:10:07

问题


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

Like this :


回答1:


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
    }]
},


来源:https://stackoverflow.com/questions/21427943/how-to-draw-a-vertical-line-on-highcharts

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!