You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/04/23 09:40:00 UTC

[GitHub] laispace commented on issue #8212: 柱图含堆积 stack 和最值 min 时,绘制异常

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],
       }]
   }
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org