我有jsFiddle examle,可以通过拖动黄线来移动系列。如果您在图形底部的某个刻度线前按鼠标按钮并将其移到顶部,您将看到鼠标不再位于该刻度线的前面。我想知道的是如何使系列和刻度完全按照鼠标。
同样在此代码中我使用.update({min: ,max: });
但它在Visual Studio中不起作用。我怎样才能使它工作?我无法使用.setExtremes(min,max);
因为它使我的应用程序非常慢。
非常感谢任何想法:)
答案 0 :(得分:0)
请检查:http://jsfiddle.net/VXTeR/10/
固定步进功能:
var step = function(e) {
line.translate(-40, e.pageY - clickY);
var y1 = grafico.toValue(clickY),
y2 = grafico.toValue(e.pageY);
move = y1 - y2;
grafico.setExtremes(-100 + move, 400 + move, true, false)
}