|
@@ -49,7 +49,11 @@ export default {
|
|
if (this.ftrendIcoCount[0].listDate.length) {
|
|
if (this.ftrendIcoCount[0].listDate.length) {
|
|
timeLine = this.ftrendIcoCount[0].listDate;
|
|
timeLine = this.ftrendIcoCount[0].listDate;
|
|
} else {
|
|
} else {
|
|
- timeLine = [parseInt(timeall[0].split("-")[1])+"-"+parseInt(timeall[0].split("-")[2])];
|
|
|
|
|
|
+ timeLine = [
|
|
|
|
+ parseInt(timeall[0].split("-")[1]) +
|
|
|
|
+ "-" +
|
|
|
|
+ parseInt(timeall[0].split("-")[2]),
|
|
|
|
+ ];
|
|
timeLine.map(() => {
|
|
timeLine.map(() => {
|
|
_this.ftrendIcoCount[0].list.push(0);
|
|
_this.ftrendIcoCount[0].list.push(0);
|
|
_this.ftrendIcoCount[1].list.push(0);
|
|
_this.ftrendIcoCount[1].list.push(0);
|
|
@@ -58,7 +62,7 @@ export default {
|
|
}
|
|
}
|
|
|
|
|
|
option = {
|
|
option = {
|
|
- color: ["#00F4FD", "#FD8F00"],
|
|
|
|
|
|
+ color: ["#00F4FD", "#2FA4EE"],
|
|
tooltip: {
|
|
tooltip: {
|
|
trigger: "axis",
|
|
trigger: "axis",
|
|
},
|
|
},
|
|
@@ -71,13 +75,13 @@ export default {
|
|
color: "#fff",
|
|
color: "#fff",
|
|
},
|
|
},
|
|
|
|
|
|
- left: "10%",
|
|
|
|
- top: 0,
|
|
|
|
|
|
+ // left: "10%",
|
|
|
|
+ bottom: -5,
|
|
},
|
|
},
|
|
grid: {
|
|
grid: {
|
|
left: "0%",
|
|
left: "0%",
|
|
right: "0%",
|
|
right: "0%",
|
|
- bottom: "0%",
|
|
|
|
|
|
+ bottom: "12%",
|
|
top: "20%",
|
|
top: "20%",
|
|
containLabel: true,
|
|
containLabel: true,
|
|
},
|
|
},
|
|
@@ -127,7 +131,16 @@ export default {
|
|
// 24, 40, 101, 134, 90, 230,
|
|
// 24, 40, 101, 134, 90, 230,
|
|
// ],
|
|
// ],
|
|
symbolSize: 6, //拐点圆的大小
|
|
symbolSize: 6, //拐点圆的大小
|
|
- // symbol: 'circle',
|
|
|
|
|
|
+ symbol: 'circle',
|
|
|
|
+ lineStyle: {
|
|
|
|
+ color: "#00F4FD",
|
|
|
|
+ width:1
|
|
|
|
+ },
|
|
|
|
+ itemStyle: {
|
|
|
|
+ borderWidth: 1,
|
|
|
|
+ borderColor: "#00F4FD",
|
|
|
|
+ color: "#000",
|
|
|
|
+ },
|
|
},
|
|
},
|
|
{
|
|
{
|
|
name: this.ftrendIcoCount[1].name,
|
|
name: this.ftrendIcoCount[1].name,
|
|
@@ -139,8 +152,17 @@ export default {
|
|
// 240, 228, 240, 130, 240, 220, 130, 240, 228, 240, 130, 240, 220,
|
|
// 240, 228, 240, 130, 240, 220, 130, 240, 228, 240, 130, 240, 220,
|
|
// 130, 30, 50, 110, 144, 110, 240, 228, 240,
|
|
// 130, 30, 50, 110, 144, 110, 240, 228, 240,
|
|
// ],
|
|
// ],
|
|
- symbolSize: 6, //拐点圆的大小
|
|
|
|
- // symbol: 'circle',
|
|
|
|
|
|
+ symbol: "circle",
|
|
|
|
+ symbolSize: 6,
|
|
|
|
+ lineStyle: {
|
|
|
|
+ color: "#2FA4EE",
|
|
|
|
+ width:1
|
|
|
|
+ },
|
|
|
|
+ itemStyle: {
|
|
|
|
+ borderWidth: 1,
|
|
|
|
+ borderColor: "#2FA4EE",
|
|
|
|
+ color: "#000",
|
|
|
|
+ },
|
|
},
|
|
},
|
|
],
|
|
],
|
|
};
|
|
};
|