-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2_7_bar_chart.html
129 lines (120 loc) · 4.88 KB
/
2_7_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
<!--横纵坐标轴互换-->
<!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'
}
},
legend: {
data: ['CO','SO2']
},
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 : 'value',
boundaryGap : [0, 0.01]
}
],
yAxis: [
{
type : 'category',
data: (function(){
var data=[];
for(var i=0;i<5;i++){
data.push(json[i].date);
}
return data;
})()
}
],
series: [
{
name: 'CO',
type: 'bar',
itemStyle: {normal: {barBorderRadius:[10, 10, 10, 10],color:'rgba(193,35,43,1)', label:{show:true}}},
data: (function(){
var data=[];
for(var i=0;i<5;i++){
data.push(Number(json[i].CO));
}
return data;
})()
},
{
name: 'SO2',
type: 'bar',
itemStyle: {normal: {barBorderRadius:[10, 10, 10, 10],color:'rgba(181,195,52,1)', label:{show:true,textStyle:{color:'#27727B'}}}},
data: (function(){
var data=[];
for(var i=0;i<5;i++){
data.push(Number(json[i].SO2));//注意json数据值形式为string,否则会导致average无法计算
}
return data;
})()
}
]
};
// 为echarts对象加载数据
myChart.setOption(option);
}
}
);
</script>
</body>
</html>