This commit is contained in:
parent
4c6e25f616
commit
ca8ae26adc
|
@ -127,7 +127,7 @@ const getOption = () => {
|
|||
color: "#ffffff",
|
||||
position:'top',
|
||||
formatter: function (data) {
|
||||
return data.value;
|
||||
return (data.value/10000).toFixed(0) +'万';
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
|
@ -153,7 +153,7 @@ const getOption = () => {
|
|||
color: "#ffffff",
|
||||
position:'top',
|
||||
formatter: function (data) {
|
||||
return data.value;
|
||||
return (data.value/10000).toFixed(0) +'万';
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
|
|
|
@ -239,9 +239,7 @@ function getPie3D(pieData, internalDiameterRatio) {
|
|||
//图例列表的布局朝向。
|
||||
orient: "vertical",
|
||||
right: 20,
|
||||
// bottom: 20,
|
||||
top: "center",
|
||||
// left: '10px',
|
||||
//图例文字每项之间的间隔
|
||||
itemGap: 10,
|
||||
show: true,
|
||||
|
|
Loading…
Reference in New Issue