我有一个不同系列的道场图表,我为每个系列添加一个鼠标指示器。现在,当我将鼠标悬停在图表上时,它与鼠标指示器重叠。 解决这个问题的最佳方法是什么。 提前致谢
答案 0 :(得分:0)
创建指标时,添加“offset”参数。您的第一个偏移应该是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;