liuyizhou opened a new issue, #21426: URL: https://github.com/apache/echarts/issues/21426
### Version 6.0.0 ### Link to Minimal Reproduction https://echarts.apache.org/examples/zh/editor.html?c=treemap-simple ### Steps to Reproduce 在官方示例 https://echarts.apache.org/examples/zh/editor.html?c=treemap-simple 中, `option = { series: [ { type: 'treemap', **scaleLimit: { min: 1 },** data: [ { name: 'nodeA', value: 10, children: [ { name: 'nodeAa', value: 4 }, { name: 'nodeAb', value: 6 } ] }, { name: 'nodeB', value: 20, children: [ { name: 'nodeBa', value: 20, children: [ { name: 'nodeBa1', value: 20 } ] } ] } ] } ] };` 新增scaleLimit.min = 1,放大后不能缩小 ### Current Behavior 放大后或其他任何情况下,无法缩小 ### Expected Behavior 新增scaleLimit.min = 1 时,预期不能缩小至100%以下 ### Environment ```markdown - OS: macOS - Browser: Chrome - Framework: React ``` ### Any additional comments? 之前版本表现正常 -- 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]
