jasonB
jasonB

Reputation: 45

highchart highstock not display full yAxis data

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 enter image description here

Upvotes: 0

Views: 42

Answers (1)

ppotaczek
ppotaczek

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

Related Questions