-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2_5_bar_chart.html
193 lines (177 loc) · 7.64 KB
/
2_5_bar_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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!--阶梯瀑布图-->
<!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'));
var json;
$.getJSON("data/airdaily.json", function (datajson) {
optionfun(datajson);
});
function optionfun(json){
option = {
title: {
text: '空气质量变化',
subtext: 'airquality'
},
tooltip : {
trigger: 'axis',
axisPointer : { // 坐标轴指示器,坐标轴触发有效
type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
},
formatter: function (params) {
var tar;
if (params[1].value != '') {
tar = params[1];
}
else {
tar = params[0];
}
return tar.name + '<br/>' + tar.seriesName + ' : ' + tar.value;
}
},
legend: {
data: ['+CO','-CO'],
},
toolbox: {
show : true,
orient: 'vertical',
x: 'right',
y: 'center',
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable: true,
xAxis: [
{
type: 'category',
boundaryGap: true,
data: (function(){
var data=[];
for(var i=0;i<10;i++){
data.push(json[i].date);
}
return data;
})()
}
],
yAxis: [
{
type: 'value',
axisLabel: {
formatter: '{value} ug/cm3'
}
}
],
series: [
{
name:'辅助',
type:'bar',
stack: '总量',
itemStyle:{
normal:{
barBorderColor:'rgba(0,0,0,0)',
color:'rgba(0,0,0,0)'
},
emphasis:{
barBorderColor:'rgba(0,0,0,0)',
color:'rgba(0,0,0,0)'
}
},
data: (function(){
var data=[];
var sum=0;
for(var i=0;i<10;i++){
if(i%2==0){
if(i==0){
data.push(0);
sum += Number(json[i].CO);
continue;
}
data.push(sum);
sum += Number(json[i].CO);
}else {
sum -= Number(json[i].CO-1);
data.push(sum);
}
}
return data;
})()
},
{
name: '+CO',
type: 'bar',
stack: '总量',
itemStyle : { normal: {label : {show: true, position: 'top'}}},
data: (function(){
var data=[];
for(var i=0;i<10;i++){
if(i%2!=0){
data.push('');
}else {
data.push(Number(json[i].CO));
}
}
return data;
})()
},
{
name: '-CO',
type: 'bar',
stack: '总量',
itemStyle : { normal: {label : {show: true, position: 'bottom'}}},
data: (function(){
var data=[];
for(var i=0;i<10;i++){
if(i%2==0){
data.push('');
}else {
data.push(Number(json[i].CO-1));
}
}
return data;
})()
}
]
};
// 为echarts对象加载数据
myChart.setOption(option);
}
}
);
</script>
</body>
</html>