热力图值为0的问题处理

tykong-cidian
陈荣宏 2024-08-27 01:49:41 +08:00
parent aa4b7b8d05
commit 77819dd045
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ export default {
let dataArr = [];
tableData.forEach((a, index1) => {
a.forEach((b, index2) => {
dataArr.push([index1, index2, b.count || "-"]);
dataArr.push([index1, index2, b.count]);
});
});
let echartOption = {