-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1_1_line_chart.html
167 lines (160 loc) · 6.62 KB
/
1_1_line_chart.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!--标准折线图-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>a</title>
<style>
body {
background-color: #FFF
}
</style>
</head>
<body>
<div id="main" style="height:500px;width: 100%; margin-left: 0px;float: left;"></div>
<!-- ECharts单文件引入 -->
<script src="echarts-2/build/dist/echarts.js"></script>
<script src="http://libs.baidu.com/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
// 路径配置
require.config({
paths: {
echarts: 'echarts-2/build/dist'
}
});
// 使用
require(
[
'echarts',
'echarts/chart/bar', // 使用柱状图就加载bar模块,按需加载
'echarts/chart/line'
],
function (ec) {
// 基于准备好的dom,初始化echarts图表
var myChart = ec.init(document.getElementById('main'));
$.getJSON("data/shanghai.json", function (datajson) {
optionfun(datajson);
});
function optionfun(json){
option = {
title: {
text: '上海市某日空气质量变化',
subtext: '2016-3-17'
},
tooltip: {
trigger: 'axis'
},
legend: {
data: ['AQI','PM2.5','PM10']
},
toolbox: {
show: true,
feature: {
mark: {show: true},
dataView: {show: true, readOnly: false},
magicType: {show: true, type: ['line', 'bar']},
restore: {show: true},
saveAsImage: {show: true}
}
},
calculable: true,
xAxis: [
{
type: 'category',
boundaryGap: false,
data: (function(){
var data=[];
for(var i=0;i<json.length;i++){
if(json[i].position_name==null){
json[i].position_name = 'undefined'
}
data.push(json[i].position_name);
}
return data;
})()
}
],
yAxis: [
{
type: 'value',
axisLabel: {
formatter: '{value} ug/cm3'
}
}
],
series: [
{
name: 'AQI',
type: 'line',
data: (function(){
var data=[];
for(var i=0;i<json.length;i++){
data.push(json[i].aqi);
}
return data;
})(),
markPoint: {
data: [
{type: 'max', name: '最大值'},
{type: 'min', name: '最小值'}
]
},
markLine: {
data: [
{type: 'average', name: '平均值'}
]
}
},
{
name: 'PM2.5',
type: 'line',
data: (function(){
var data=[];
for(var i=0;i<json.length;i++){
data.push(json[i].pm2_5);
}
return data;
})(),
markPoint: {
data: [
{name: '最低', value: 21, xAxis: 1, yAxis: 21}
]
},
markLine: {
data: [
{type: 'average', name: '平均值'}
]
}
},
{
name: 'PM10',
type: 'line',
data: (function(){
var data=[];
for(var i=0;i<json.length;i++){
data.push(json[i].pm10);
console.log(json[i].pm10);
}
return data;
})(),
markPoint: {
data: [
{type: 'max', name: '最大值'},
{type: 'min', name: '最小值'}
]
},
markLine: {
data: [
{type: 'average', name: '平均值'}
]
}
}
]
};
// 为echarts对象加载数据
myChart.setOption(option);
}
}
);
</script>
</body>