100pah opened a new pull request, #21638: URL: https://github.com/apache/echarts/pull/21638
<!-- Please fill in the following information to help us review your PR more efficiently. --> ## Brief Information This pull request is in the type of: - [] bug fixing - [ ] new feature - [x] others ### What does this PR do? <!-- USE ONE SENTENCE TO DESCRIBE WHAT THIS PR DOES. --> Make `axis.min/max` behave consistently with the handling to `series.data` and `axis.dataMin/Max` - illegal values are ignored. - The previous behavior (before v6.1.0) is partially reasonable: `axis.min/max: NaN` coincidentally results in correct series rendering but abnormal axisLabel rendering, and cause axis extent to be series min/max. - v6.1.0 introduces a breaking - `axis.min: NaN` causes axis to be blank and series not to be rendered, which is not preferable, since some existing usage accidentally pass `NaN`, yet the chart still be renders. - The current behavior introduced in this PR is both reasonable and the closest to previous behavior (before v6.1.0). -- 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]
