I need to plot a chart using Highcharts, and I have to sort of round down data not to plot very little variations around small values.
Eg. I have yAxis data that moves between 0 and 10, and the plot is ok. Eg. I have yAxis data that moves between 0.0003 and 0.00031 and the plot will show too much detailed info.
I need to find a way to make the chart plot data so that I can appreciate variations of +- 0.01, and nothing more, without imposing max
and min
parameters, so that the chart will auto define its bounds. Also, I do not want to round down each data point, since I want to be able to zoom in the chart freely.
Do you know how to achieve this using Highcharts? Thank you!