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