Is there a way to disable the constant redrawing that occurs in highstock 1.3 when dragging the navigator or the navigator handles?

In 1.25 when you move the navigator or pan the chart by dragging, 1 redraw event is fired once you release the mouse.
In 1.3 multiple redraws are fired while you are dragging the navigator/panning the chart.


I would like to know if I can return the behaviour of the chart in 1.3 to the way it works in 1.25

有帮助吗?

解决方案

To disable the automatic redrawing when scrolling, we have a new option in the highstock 1.3 api:

http://api.highcharts.com/highstock#scrollbar.liveRedraw

scrollbar: {
    liveRedraw: false 
}

This fixes the problem.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top