Nadya
Nadya

Reputation: 73

Max number of flags on highstock control

It seems that when number of flags exceeds 1000, flags are not displayed on control. Is it a bug or this behavior can be changed somehow?

See jsFiddle example: http://jsfiddle.net/SDknv/

When ran as is, this code will not show any flags on series. If you change line var flagsCount = 1001 to var flagsCount = 1000 and run example again, all 1000 flags will be displayed.

Upvotes: 0

Views: 208

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You should increase turboThreshold parameter: http://api.highcharts.com/highstock#plotOptions.series.turboThreshold

Upvotes: 2

Related Questions