You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2019/11/03 16:01:20 UTC

[GitHub] [incubator-echarts] lailailee commented on issue #11535: 堆积柱图显示标注最大值会出现显示bug,我不知道这个算正常吗?

lailailee commented on issue #11535: 堆积柱图显示标注最大值会出现显示bug,我不知道这个算正常吗?
URL: https://github.com/apache/incubator-echarts/issues/11535#issuecomment-549151703
 
 
   ```js
   option = {
     legend: {},
     tooltip: {},
     dataset: {
       source: [
         ['product', '2012', '2013', '2014', '2015'],
         ['Matcha Latte', 41.1, 30.4, 65.1, 53.3],
         ['Milk Tea', 86.5, 92.1, 85.7, 83.1],
         ['Cheese Cocoa', 24.1, 67.2, 79.5, 86.4]
       ]
     },
     xAxis: [
       { type: 'category', gridIndex: 0 },
       { type: 'category', gridIndex: 1 }
     ],
     yAxis: [
       { gridIndex: 0 },
       { gridIndex: 1 }
     ],
     grid: [
       { bottom: '55%' },
       { top: '55%' }
     ],
     series: [
       // These series are in the first grid.
       {
         type: 'bar',
         seriesLayoutBy: 'row',
         stack: '1',
         markPoint: {
           data: [
             { type: 'max', name: '最大值' },
             { type: 'min', name: '最小值' }
           ]
         },
       },
       {
         type: 'bar',
         seriesLayoutBy: 'row',
         stack: '1',
         markPoint: {
           data: [
             { type: 'max', name: '最大值' },
             { type: 'min', name: '最小值' }
           ]
         },
       },
       {
         type: 'bar',
         seriesLayoutBy: 'row',
         stack: '1',
         markPoint: {
           data: [
             { type: 'max', name: '最大值' },
             { type: 'min', name: '最小值' }
           ]
         },
       },
       // These series are in the second grid.
       { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },
       { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },
       { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 },
       { type: 'bar', xAxisIndex: 1, yAxisIndex: 1 }
     ]
   };
   
   ```
   I changed it on the basis of this   [example](https://www.echartsjs.com/examples/zh/editor.html?c=dataset-series-layout-by&theme=light)
   
   add
   ```js
   stack: '1',
   markPoint: {
           data: [
             { type: 'max', name: '最大值' },
             { type: 'min', name: '最小值' }
           ]
         },
   ```
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

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