-
Notifications
You must be signed in to change notification settings - Fork 0
/
auto_refresh.html
90 lines (81 loc) · 2.51 KB
/
auto_refresh.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>刷新axisxPoint</title>
<!-- 引入 ECharts 文件 -->
<script src="echarts.min.js"></script>
</head>
<body>
<!-- 为 ECharts 准备一个具备大小(宽高)的 DOM -->
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
var data1 = 200;
var data2 = [1221, 932, 901, 934, 1290, 1330, 1320];
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value',
axisPointer: {
show: true,
value: data1,
lineStyle: {
color: '#004E52',
opacity: 0.5,
width: 2
},
handle: {
show: true,
size: 0,
//color: '#004E52'
triggerOn: 'none'
}
}
},
series: [{
type: 'bar',
data: data2
}, {
type: 'line',
data: data2,
}]
};
function updateData() {
data1 = Math.random() * 1000;
}
setInterval(function () {
updateData(); myChart.setOption({
yAxis: {
type: 'value',
axisPointer: {
show: true,
value: data1,
lineStyle: {
color: '#004E52',
opacity: 0.5,
width: 2
},
handle: {
show: true,
size: 0,
color: '#004E52',
triggerOn: 'none'
}
}
}
});
}, 1000);
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
myChart.on('click', function (params) {
// 控制台打印数据的名称
console.log(params.name);
});
</script>
</body>
</html>