王钦
6 months ago
6 changed files with 283 additions and 30 deletions
@ -0,0 +1,97 @@ |
|||||
|
/* 数据 */ |
||||
|
let nameList = [ |
||||
|
"1月", |
||||
|
"2月", |
||||
|
"3月", |
||||
|
"4月", |
||||
|
"5月", |
||||
|
"6月", |
||||
|
"7月", |
||||
|
"8月", |
||||
|
"9月", |
||||
|
"10月", |
||||
|
"11月", |
||||
|
"12月", |
||||
|
]; // 类别
|
||||
|
var options = { |
||||
|
tooltip: { |
||||
|
show: true, |
||||
|
trigger: "axis", |
||||
|
valueFormatter: null |
||||
|
}, |
||||
|
legend: { |
||||
|
icon: "circle", |
||||
|
itemHeight: 8, |
||||
|
itemWidth: 8, |
||||
|
top: "5%", |
||||
|
x: "right", |
||||
|
textStyle: { |
||||
|
color: "#fff", |
||||
|
}, |
||||
|
}, |
||||
|
grid: { |
||||
|
top: "25%", //上边距
|
||||
|
right: "0%", //右边距
|
||||
|
left: "0%", //左边距
|
||||
|
bottom: "0%", //下边距
|
||||
|
containLabel: true, |
||||
|
}, |
||||
|
xAxis: { |
||||
|
data: [], |
||||
|
axisTick: { |
||||
|
show: false, //隐藏X轴刻度
|
||||
|
}, |
||||
|
axisLine: { |
||||
|
lineStyle: { |
||||
|
color: "rgba(49, 217, 255, 0.8)", |
||||
|
}, |
||||
|
}, |
||||
|
axisLabel: { |
||||
|
show: true, |
||||
|
color: "#fff", |
||||
|
fontFamily: "Source Han Sans CN-Regular", |
||||
|
}, |
||||
|
}, |
||||
|
yAxis: [ |
||||
|
{ |
||||
|
type: "value", |
||||
|
name: "(指标)", |
||||
|
nameTextStyle: { |
||||
|
color: "#fff", |
||||
|
fontFamily: "Source Han Sans CN-Regular", |
||||
|
align: "right", |
||||
|
verticalAlign: "center", |
||||
|
}, |
||||
|
axisLabel: { |
||||
|
color: "#fff", |
||||
|
fontFamily: "HarmonyOS Sans-Regular", |
||||
|
}, |
||||
|
splitLine: { |
||||
|
lineStyle: { |
||||
|
color: "rgba(49, 217, 255, 0.5)", |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
], |
||||
|
series: [ |
||||
|
{ |
||||
|
name: "交通特征", |
||||
|
type: "line", |
||||
|
symbol: "circle", |
||||
|
symbolSize: 0, |
||||
|
|
||||
|
// yAxisIndex: 1, // 与第二个 y 轴关联
|
||||
|
itemStyle: { |
||||
|
color: "#32BB8A", |
||||
|
}, |
||||
|
lineStyle: { |
||||
|
width: 2, |
||||
|
}, |
||||
|
data: [ |
||||
|
1000, 800, 520, 600, 900, 700, 700, 1000, 800, 520, 600, 900, 700, 700, |
||||
|
], // 折线图的数据
|
||||
|
} |
||||
|
], |
||||
|
}; |
||||
|
|
||||
|
export default options; |
Loading…
Reference in new issue