Limit highstock points 1001 records

0

I was trying to read many measurements and I realized that when it exceeds 1000 measurements, it does not paint the graph.

If you open the link: link

You can not see the graph, but if you remove a single element ["14/03/2018 P16",12.62] you see the graph.

I have counted and casually fail when there are 1001 records. Why does this happen?

    
asked by nachfren 27.12.2018 в 19:15
source

1 answer

0

It comes pre-defined to 1000 points, to change the scope I've seen the property :

plotOptions:{
    series:{
        turboThreshold:5000//set it to a larger threshold, it is by default to 1000
    }
}
    
answered by 28.12.2018 / 10:03
source