This commit is contained in:
zhuangyuanke 2024-08-15 08:33:43 +08:00
parent d425c878ac
commit cb0ba25c76

View File

@ -149,7 +149,7 @@ export default {
},
},
legend: {
data: ["签约数量", "签约率(%)"],
data: ["患者数量", "签约率(%)"],
},
color: ["#2BBD2E", "#68B4FF"],
xAxis: [
@ -173,7 +173,7 @@ export default {
yAxis: [
{
type: "value",
name: "签约数量",
name: "患者数量",
// min: 0,
// max: 20,
// interval: 4,
@ -194,7 +194,7 @@ export default {
],
series: [
{
name: "签约数量",
name: "患者数量",
type: "bar",
tooltip: {
valueFormatter: function (value) {
@ -211,7 +211,7 @@ export default {
yAxisIndex: 1,
tooltip: {
valueFormatter: function (value) {
return value + " %";
return value*100 + " %";
},
},
data: proportionlist,