MatthiasMert commented on issue #19358: URL: https://github.com/apache/echarts/issues/19358#issuecomment-1838496102
In the linked example you are not applying any min / max restriction to dataZoom. In case you are referring to the yAxis labels not starting and ending exactly with the min and max values of your data, this has nothing to do with dataZoom but is automatically done by the `scale` option. If you want your axisLabel set to your minimum and maximum data values you can use the axis property [min and max](https://echarts.apache.org/en/option.html#yAxis.min): `yAxis: { min: 'dataMin', max: 'dataMax' }` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
