|
@@ -17,6 +17,10 @@ export default {
|
|
type: String,
|
|
type: String,
|
|
default: "350px",
|
|
default: "350px",
|
|
},
|
|
},
|
|
|
|
+ symbolSize: {
|
|
|
|
+ type: Number,
|
|
|
|
+ default: 5
|
|
|
|
+ },
|
|
// 传入数据
|
|
// 传入数据
|
|
data: {
|
|
data: {
|
|
type: Array,
|
|
type: Array,
|
|
@@ -584,25 +588,26 @@ export default {
|
|
emphasis: {
|
|
emphasis: {
|
|
focus: "series",
|
|
focus: "series",
|
|
},
|
|
},
|
|
|
|
+ symbolSize: this.symbolSize,
|
|
data: element.value,
|
|
data: element.value,
|
|
- markLine: {
|
|
|
|
- data: [
|
|
|
|
- {
|
|
|
|
- type: "max",
|
|
|
|
- name: "最大值",
|
|
|
|
- label: {
|
|
|
|
- color: partten.getColor("gray"),
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- type: "min",
|
|
|
|
- name: "最小值",
|
|
|
|
- label: {
|
|
|
|
- color: partten.getColor("gray"),
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
- },
|
|
|
|
|
|
+ // markLine: {
|
|
|
|
+ // data: [
|
|
|
|
+ // {
|
|
|
|
+ // type: "max",
|
|
|
|
+ // name: "最大值",
|
|
|
|
+ // label: {
|
|
|
|
+ // color: partten.getColor("gray"),
|
|
|
|
+ // },
|
|
|
|
+ // },
|
|
|
|
+ // {
|
|
|
|
+ // type: "min",
|
|
|
|
+ // name: "最小值",
|
|
|
|
+ // label: {
|
|
|
|
+ // color: partten.getColor("gray"),
|
|
|
|
+ // },
|
|
|
|
+ // },
|
|
|
|
+ // ],
|
|
|
|
+ // },
|
|
});
|
|
});
|
|
});
|
|
});
|
|
return result;
|
|
return result;
|
|
@@ -627,7 +632,7 @@ export default {
|
|
result.push(ele);
|
|
result.push(ele);
|
|
});
|
|
});
|
|
|
|
|
|
- return result;
|
|
|
|
|
|
+ return ["1", "2", "3"];
|
|
},
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
@@ -677,7 +682,7 @@ export default {
|
|
legend: {
|
|
legend: {
|
|
show: this.showLegend,
|
|
show: this.showLegend,
|
|
data: this.legend,
|
|
data: this.legend,
|
|
- right: "40",
|
|
|
|
|
|
+ orient: 'horizontal',
|
|
icon: "circle",
|
|
icon: "circle",
|
|
itemWidth: 6,
|
|
itemWidth: 6,
|
|
inactiveColor: partten.getColor("gray"),
|
|
inactiveColor: partten.getColor("gray"),
|
|
@@ -685,6 +690,7 @@ export default {
|
|
color: partten.getColor("grayl"),
|
|
color: partten.getColor("grayl"),
|
|
fontSize: 12,
|
|
fontSize: 12,
|
|
},
|
|
},
|
|
|
|
+ selectedMode: false,
|
|
},
|
|
},
|
|
xAxis: [
|
|
xAxis: [
|
|
{
|
|
{
|
|
@@ -697,6 +703,8 @@ export default {
|
|
splitLine: {
|
|
splitLine: {
|
|
show: false,
|
|
show: false,
|
|
},
|
|
},
|
|
|
|
+ interval: 1,
|
|
|
|
+ data: [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25],
|
|
},
|
|
},
|
|
],
|
|
],
|
|
yAxis: [
|
|
yAxis: [
|