码迷,mamicode.com
首页 > 其他好文 > 详细

echarts pie 图表当名称太长时

时间:2018-07-18 19:14:15      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:formatter   显示   name   enter   turn   echarts   ros   option   func   

当饼图的名称太长时,只显示几个字符,其余的。。。

 1 let use;
 2 use.setOption({
 3     tooltip: {
 4     trigger: ‘item‘,
 5        formatter: "{a} <br/>{b} : {c}MB ({d}%)"
 6      },
 7       series: [
 8             {
 9               name: ‘面积模式‘,
10               type: ‘pie‘,
11               radius: ‘60%‘,
12               center: [‘40%‘, ‘55%‘],
13               roseType: ‘area‘,
14               label: {
15                 fontSize: ‘16‘,
16                 formatter: function (value) {
17                   let res = value.name;//获取到名称
18                   if (res.length > 10) {
19                     res = res.substring(0, 9) + "..";
20                   }
21                   return res;
22                 }
23               },
24               data: [{name: ‘我是很长长长长长长的名字‘, value:20}]
25             }
26           ]
27 });
28 
29               
30     

 

echarts pie 图表当名称太长时

标签:formatter   显示   name   enter   turn   echarts   ros   option   func   

原文地址:https://www.cnblogs.com/mxyr/p/9330797.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!