mattetre
mattetre

Reputation: 390

highstock 1.3 disable navigator dragging redraw

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

Upvotes: 2

Views: 2444

Answers (1)

mattetre
mattetre

Reputation: 390

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.

Upvotes: 4

Related Questions