tlbb764652810 opened a new issue, #21415: URL: https://github.com/apache/echarts/issues/21415
### Version 6.0 ### Link to Minimal Reproduction https://echarts.apache.org/examples/zh/editor.html?c=line-simple ### Steps to Reproduce 好用的例子如下 option = { xAxis: { type: 'category', data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'] }, yAxis: { type: 'value' }, series: [ { data: [150, 230, 224, 218, 135, 147, 260], type: 'bar', markLine: { data: [{ name: '平均线', // 支持 'average', 'min', 'max' type: 'average' }] } } ] }; 不好用的例子如下 option = { dataset: { source: [ ['score', 'amount', 'product'], [89.3, 58212, 'Matcha Latte'], [57.1, 78254, 'Milk Tea'], [74.4, 41032, 'Cheese Cocoa'], [50.1, 12755, 'Cheese Brownie'], [89.7, 20145, 'Matcha Cocoa'], [68.1, 79146, 'Tea'], [19.6, 91852, 'Orange Juice'], [10.6, 101852, 'Lemon Juice'], [32.7, 20112, 'Walnut Brownie'] ] }, xAxis: {type: 'category'}, yAxis: { type: 'value' }, series: [ { type: 'bar', encode: { x: 'product', y: 'amount' }, markLine: { data: [{ name: '平均线', type: 'average' }] } } ] }; ### Current Behavior 不好用的例子加载报错 ### Expected Behavior <img width="1133" height="702" alt="Image" src="https://github.com/user-attachments/assets/1673f432-1d49-474a-bbbb-3292b9f40b06" /> ### Environment ```markdown - OS: - Browser: - Framework: ``` ### Any additional comments? 之前v5的版本是好用的 -- 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]
