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/08/30 13:34:12 UTC

[GitHub] Ovilia commented on issue #8975: custom类别的图形 双Y轴位置异常

Ovilia commented on issue #8975: custom类别的图形 双Y轴位置异常
URL: https://github.com/apache/incubator-echarts/issues/8975#issuecomment-417321035
 
 
   你自己检查一下哪里写错了吧,下面的代码可以实现自定义系列双 Y 轴:
   
   ```js
   var data = [[10, 16, 3, 'A'], [16, 18, 15, 'B'], [18, 26, 12, 'C'], [26, 32, 22, 'D'], [32, 56, 7, 'E'], [56, 62, 17, 'F']];
   var colorList = ['#4f81bd', '#c0504d', '#9bbb59', '#604a7b', '#948a54', '#e46c0b'];
   
   data = echarts.util.map(data, function (item, index) {
       return {
           value: item,
           itemStyle: {
               normal: {
                   color: colorList[index]
               }
           }
       };
   });
   
   function renderItem(params, api) {
       var yValue = api.value(2);
       var start = api.coord([api.value(0), yValue]);
       var size = api.size([api.value(1) - api.value(0), yValue]);
       var style = api.style();
   
       return {
           type: 'rect',
           shape: {
               x: start[0],
               y: start[1],
               width: size[0],
               height: size[1]
           },
           style: style
       };
   }
   
   option = {
       title: {
           text: 'Profit',
           left: 'center'
       },
       tooltip: {
       },
       xAxis: {
           scale: true
       },
       yAxis: [{
           name: '1'
       }, {
           name: '2'
       }],
       series: [{
           type: 'custom',
           renderItem: renderItem,
           label: {
               normal: {
                   show: true,
                   position: 'top'
               }
           },
           dimensions: ['from', 'to', 'profit'],
           encode: {
               x: [0, 1],
               y: 2,
               tooltip: [0, 1, 2],
               itemName: 3
           },
           data: data
       }, {
           type: 'custom',
           renderItem: renderItem,
           yAxisIndex: 1,
           label: {
               normal: {
                   show: true,
                   position: 'top'
               }
           },
           dimensions: ['from', 'to', 'profit'],
           encode: {
               x: [0, 1],
               y: 2,
               tooltip: [0, 1, 2],
               itemName: 3
           },
           data: data
       }]
   };
   ```

----------------------------------------------------------------
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