我有一个不同系列的道场图表,我为每个系列添加了一个鼠标指示器。现在,当我将鼠标悬停在图表上时,它与鼠标指示器重叠。解决此问题的最佳方法是什么。提前致谢
问问题
404 次
1 回答
0
创建指标时,添加“偏移”参数。您的第一个偏移量应为 0,然后将其增加一个设定量,以便下一个指标不妨碍第一个指标。
//yOffset is the step size for the y offset. index initialized to 0.
var yOffset = 20;
var interactor = new Indicator(holder.chart, "default", {
series: *your series goes here*,
offset: {x: 0, y: yOffset * index},
});
index += 1;
于 2014-07-07T20:09:29.117 回答