Reputation: 45
yAxis
just display data from range -500 to 250. However, the graph has data points which value are larger than 250 but not display on the graph
Upvotes: 0
Views: 42
Reputation: 39119
That is caused by the dataGrouping
feature. You can disable it by:
plotOptions: {
scatter: {
dataGrouping: {
enabled: false
}
}
}
API Reference: https://api.highcharts.com/highstock/series.scatter.dataGrouping
Upvotes: 1