laispace commented on issue #8212: 柱图含堆积 stack 和最值 min 时,绘制异常 URL: https://github.com/apache/incubator-echarts/issues/8212#issuecomment-383516052 无 stack 时,也有一个场景会有这个问题: ``` option = { "xAxis": [ { "type": "category", "data": ["2018-04-16", "2018-04-17", "2018-04-18", "2018-04-19", "2018-04-20", "2018-04-21", "2018-04-22"] }], "yAxis": [ { "type": "value", "name": "left", "min": 50, }, { "type": "value", "name": "right", "min": 0, }], "series": [ { "name": "left", "type": "bar", "yAxisIndex": 0, "data": [65, 144, 158, 122, 64, 242, 86], }, { "name": "right", "type": "bar", "yAxisIndex": 1, "data": [472, 3332, 3203, 942, 3008, 1727, 395], }] } ``` [截图](https://i.loli.net/2018/04/23/5addac6ad3fbc.png)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
