标签: javascript charts highcharts highstock
我有以下问题,我有一张highstock图表,如果我的第一个系列在2012年7月到2012年11月开始,我的第二个系列从2013年7月到2013年9月开始,导航器只使用第一个系列,看起来像丢失数据一样奇怪,所以我怎么能对导航器说什么使用包含两个系列的完整区间而不仅仅是第一个 感谢
答案 0 :(得分:0)
您可以使用chart.addSeries()
chart.addSeries({ name : "", xAxis: 0, yAxis: 1, type: "line", enableMouseTracking: false, data : your set of data to be shown in navigator, showInLegend:false })
这将为导航器添加一个系列。
回答类似的问题here
这是一个有效的example
答案 1 :(得分:0)
您还可以在预处理期间准备分离的系列(连接两个系列数据),导航器将使用它。
http://api.highcharts.com/highstock#navigator.series