|
|
@ -16,7 +16,7 @@ let list = [ |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "拥挤度", |
|
|
|
max: 88, |
|
|
|
max: 108, |
|
|
|
}, |
|
|
|
{ |
|
|
|
name: "饱和度", |
|
|
@ -28,26 +28,26 @@ let data2 = [[60, 60, 65, 60, 70, 40, 80, 63]]; |
|
|
|
let options = { |
|
|
|
tooltip: { |
|
|
|
show: true, |
|
|
|
// trigger: "item",
|
|
|
|
formatter: (data) => { |
|
|
|
// console.log(data.seriesIndex);
|
|
|
|
var tip = '<span class="echarts-tip-h5">' + data.seriesName + "</span>"; |
|
|
|
let tmpData = []; |
|
|
|
if (data.seriesIndex === 0) { |
|
|
|
tmpData = data1; |
|
|
|
} else if (data.seriesIndex === 1) { |
|
|
|
tmpData = data2; |
|
|
|
} |
|
|
|
console.log(tmpData); |
|
|
|
data.value.forEach((item, index) => { |
|
|
|
// console.log(list[index].name)
|
|
|
|
tip += "<div>"; |
|
|
|
tip += |
|
|
|
"<div>" + list[index].name + ": " + tmpData[0][index] + "万</div>"; |
|
|
|
tip += "</div>"; |
|
|
|
}); |
|
|
|
return tip; |
|
|
|
}, |
|
|
|
trigger: "radar", |
|
|
|
// formatter: (data) => {
|
|
|
|
// // console.log(data.seriesIndex);
|
|
|
|
// var tip = '<span class="echarts-tip-h5">' + data.seriesName + "</span>";
|
|
|
|
// let tmpData = [];
|
|
|
|
// if (data.seriesIndex === 0) {
|
|
|
|
// tmpData = data1;
|
|
|
|
// } else if (data.seriesIndex === 1) {
|
|
|
|
// tmpData = data2;
|
|
|
|
// }
|
|
|
|
// console.log(tmpData);
|
|
|
|
// data.value.forEach((item, index) => {
|
|
|
|
// // console.log(list[index].name)
|
|
|
|
// tip += "<div>";
|
|
|
|
// tip +=
|
|
|
|
// "<div>" + list[index].name + ": " + tmpData[0][index] + "万</div>";
|
|
|
|
// tip += "</div>";
|
|
|
|
// });
|
|
|
|
// return tip;
|
|
|
|
// },
|
|
|
|
}, |
|
|
|
grid: { |
|
|
|
top: "5%", //上边距
|
|
|
|