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/11/16 12:06:47 UTC

[GitHub] cuijian-dexter opened a new pull request #9421: New Feature--series.label.position Add rightTop, rightBottom, leftTop and leftBottom

cuijian-dexter opened a new pull request #9421: New Feature--series.label.position  Add rightTop,rightBottom,leftTop and leftBottom
URL: https://github.com/apache/incubator-echarts/pull/9421
 
 
   
   
   
   ```javascript
        var option = {
               title: {
                   text: '漏斗图',
                   subtext: '纯属虚构'
               },
               tooltip: {
                   trigger: 'item',
                   formatter: "{a} <br/>{b} : {c}%"
               },
               toolbox: {
                   feature: {
                       dataView: {readOnly: false},
                       restore: {},
                       saveAsImage: {}
                   }
               },
               legend: {
                   data: ['展现','点击','访问','咨询','订单']
               },
               calculable: true,
               series: [
                   {
                       name:'漏斗图',
                       type:'funnel',
                       left: '10%',
                       top: 60,
                       //x2: 80,
                       bottom: 60,
                       width: '80%',
                       // height: {totalHeight} - y - y2,
                       min: 0,
                       max: 100,
                       minSize: '0%',
                       maxSize: '100%',
                       sort: 'descending',
                       gap: 2,
                       label: {
                           normal: {
                               show: true,
                               position: 'leftTop',
                               verticalAlignment:true
                           },
                           emphasis: {
                               textStyle: {
                                   fontSize: 20
                               }
                           }
                       },
                       labelLine: {
                           normal: {
                               length: 10,
                               lineStyle: {
                                   width: 1,
                                   type: 'solid'
                               }
                           }
                       },
                       itemStyle: {
                           normal: {
                               borderColor: '#fff',
                               borderWidth: 1
                           }
                       },
                       data: [
                           {value: 60, name: '访问'},
                           {value: 40, name: '咨询'},
                           {value: 20, name: '订单'},
                           {value: 80, name: '点击'},
                           {value: 100, name: '展现'}
                       ]
                   }
               ]
           };
   ```
   ![image](https://user-images.githubusercontent.com/28971820/48620393-fce7eb80-e9da-11e8-9892-3ed50e9091d4.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:
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