Is there a way to scale bars in a column chart? Basically, I have a column chart which trying to draw based on a data series that has number
Basically, I have a column chart which trying to draw based on a data series that has numbers fluctuating by quite a lot, the data values look something like:
[3000000, 7000000, 25000, 9000000]
The bar for 25000 doesn't display because the value is so much smaller than other.
1
vote
pg
shared this idea
You have two possible solutions:
- yAxis.type = “logarithmic”
- yAxis.breaks = [ … ]
Docs:
- https://api.highcharts.com/highcharts/yAxis.type
- https://api.highcharts.com/highcharts/yAxis.breaks