This commit is contained in:
2025-09-11 15:12:33 +08:00
parent 3998fc722f
commit 933bb91be7
4 changed files with 47 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ option_1_1 = {
type: "line",
yAxisIndex: 1,
data: [],
tooltip: { valueFormatter: (v) => v + " 万人" },
tooltip: { valueFormatter: (v) => typeof v === "number" ? v + " 万人" : v },
},
],
};
@@ -136,4 +136,3 @@ option_1_2 = {
},
],
};

45
static/js/echarts.min.js vendored Normal file

File diff suppressed because one or more lines are too long