无论如何通过highcharts / highstock制作如图所示的垂直蓝线?
答案 0 :(得分:1)
是。这些被称为plotBands
。非常建议查看HighCharts API文档。大量的例子。
答案 1 :(得分:1)
是的,这些被称为情节乐队,
您可以根据需要配置绘图带。
可以轻松配置
xAxis :{
plotBands:{
id: 'abc',
from: 0,
to:1,
color: '#CCCCCC'
}
}
这将设置一个带有从xAxis 0到xAXis 1的id的绘图带, 如果需要,id将有助于以后删除它。
一旦使用名为addPlotBand()的方法完全渲染图表,您也可以添加绘图带;
chart.xAxis[0].addPlotBand({
id: 'abc',
from: 0,
to:1,
color: '#CCCCCC'
});
同样可以为yAxis做。
请参考高 希望这可以帮助you.charts Api文档,然后继续。