srv.js
1.13 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
let option = (resData) => {
return {
tooltip: {
trigger: 'axis',
position: function (pt) {
return [pt[0], '10%'];
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: resData && resData.x || []
},
yAxis: {
type: 'value',
boundaryGap: [0, '100%'],
splitLine: {
show: false
}
},
dataZoom: [{
type: 'slider',
start: 0.5,
end: 50,
height: '7%',
showDataShadow: false
}, {
start: 10,
end: 100,
height: '7%',
showDataShadow: false,
handleIcon: 'M0,0 v9.7h3 v-9.7h-3 Z',
handleSize: '94%',
handleStyle: {
color: '#c7d1de',
}
}],
series: [{
name: '指标',
type: 'line',
showSymbol: false,
hoverAnimation: false,
data: resData && resData.y || []
}]
}
};
export default option;