Charlie500 commented on issue #7206:
URL: https://github.com/apache/echarts/issues/7206#issuecomment-1379809880

   > echarts 雷达图如何修改数值但却不改变形状的图形呢? 
![image](https://user-images.githubusercontent.com/26652910/33662598-4c525332-dac7-11e7-8d78-4017d064a20d.png)
   > 
   > 源码:
   > 
   > ```js
   > 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: 'inside'
   >                 },
   >                 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: '展现'}
   >             ]
   >         }
   >     ]
   > };
   > ```
   
   legend 改变时,保持图形不变你做到了吗


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

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to