Blame view

samples/areaStacked.html 8.31 KB
eed3c9f67   tom200e   first file
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  
      <head>
          <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
          <title>amCharts examples</title>
          <link rel="stylesheet" href="style.css" type="text/css">
          <script src="../amcharts/amcharts.js" type="text/javascript"></script>
          <script src="../amcharts/serial.js" type="text/javascript"></script>
          <script type="text/javascript">
              var chart;
  
              var chartData = [
                  {
                      "year": 1995,
                      "cars": 1567,
                      "motorcycles": 683,
                      "bicycles": 146
                  },
                  {
                      "year": 1996,
                      "cars": 1617,
                      "motorcycles": 691,
                      "bicycles": 138
                  },
                  {
                      "year": 1997,
                      "cars": 1630,
                      "motorcycles": 642,
                      "bicycles": 127
                  },
                  {
                      "year": 1998,
                      "cars": 1660,
                      "motorcycles": 699,
                      "bicycles": 105
                  },
                  {
                      "year": 1999,
                      "cars": 1683,
                      "motorcycles": 721,
                      "bicycles": 109
                  },
                  {
                      "year": 2000,
                      "cars": 1691,
                      "motorcycles": 737,
                      "bicycles": 112
                  },
                  {
                      "year": 2001,
                      "cars": 1298,
                      "motorcycles": 680,
                      "bicycles": 101
                  },
                  {
                      "year": 2002,
                      "cars": 1275,
                      "motorcycles": 664,
                      "bicycles": 97
                  },
                  {
                      "year": 2003,
                      "cars": 1246,
                      "motorcycles": 648,
                      "bicycles": 93
                  },
                  {
                      "year": 2004,
                      "cars": 1218,
                      "motorcycles": 637,
                      "bicycles": 101
                  },
                  {
                      "year": 2005,
                      "cars": 1213,
                      "motorcycles": 633,
                      "bicycles": 87
                  },
                  {
                      "year": 2006,
                      "cars": 1199,
                      "motorcycles": 621,
                      "bicycles": 79
                  },
                  {
                      "year": 2007,
                      "cars": 1110,
                      "motorcycles": 210,
                      "bicycles": 81
                  },
                  {
                      "year": 2008,
                      "cars": 1165,
                      "motorcycles": 232,
                      "bicycles": 75
                  },
                  {
                      "year": 2009,
                      "cars": 1145,
                      "motorcycles": 219,
                      "bicycles": 88
                  },
                  {
                      "year": 2010,
                      "cars": 1163,
                      "motorcycles": 201,
                      "bicycles": 82
                  },
                  {
                      "year": 2011,
                      "cars": 1180,
                      "motorcycles": 285,
                      "bicycles": 87
                  },
                  {
                      "year": 2012,
                      "cars": 1159,
                      "motorcycles": 277,
                      "bicycles": 71
                  }
              ];
  
              AmCharts.ready(function () {
                  // SERIAL CHART
                  chart = new AmCharts.AmSerialChart();
                  chart.pathToImages = "../amcharts/images/";
                  chart.dataProvider = chartData;
                  chart.marginTop = 10;
                  chart.categoryField = "year";
  
                  // AXES
                  // Category
                  var categoryAxis = chart.categoryAxis;
                  categoryAxis.gridAlpha = 0.07;
                  categoryAxis.axisColor = "#DADADA";
                  categoryAxis.startOnAxis = true;
  
                  // Value
                  var valueAxis = new AmCharts.ValueAxis();
                  valueAxis.stackType = "regular"; // this line makes the chart "stacked"
                  valueAxis.gridAlpha = 0.07;
                  valueAxis.title = "Traffic incidents";
                  chart.addValueAxis(valueAxis);
  
                  // GUIDES are vertical (can also be horizontal) lines (or areas) marking some event.
                  // first guide
                  var guide1 = new AmCharts.Guide();
                  guide1.category = "2001";
                  guide1.lineColor = "#CC0000";
                  guide1.lineAlpha = 1;
                  guide1.dashLength = 2;
                  guide1.inside = true;
                  guide1.labelRotation = 90;
                  guide1.label = "fines for speeding increased";
                  categoryAxis.addGuide(guide1);
  
                  // second guide
                  var guide2 = new AmCharts.Guide();
                  guide2.category = "2007";
                  guide2.lineColor = "#CC0000";
                  guide2.lineAlpha = 1;
                  guide2.dashLength = 2;
                  guide2.inside = true;
                  guide2.labelRotation = 90;
                  guide2.label = "motorcycle maintenance fee introduced";
                  categoryAxis.addGuide(guide2);
  
  
                  // GRAPHS
                  // first graph
                  var graph = new AmCharts.AmGraph();
                  graph.type = "line"; // it's simple line graph
                  graph.title = "Cars";
                  graph.valueField = "cars";
                  graph.lineAlpha = 0;
                  graph.fillAlphas = 0.6; // setting fillAlphas to > 0 value makes it area graph
                  graph.balloonText = "<img src='images/car.png' style='vertical-align:bottom; margin-right: 10px; width:28px; height:21px;'><span style='font-size:14px; color:#000000;'><b>[[value]]</b></span>";
                  graph.hidden = true;
                  chart.addGraph(graph);
  
                  // second graph
                  graph = new AmCharts.AmGraph();
                  graph.type = "line";
                  graph.title = "Motorcycles";
                  graph.valueField = "motorcycles";
                  graph.lineAlpha = 0;
                  graph.fillAlphas = 0.6;
                  graph.balloonText = "<img src='images/motorcycle.png' style='vertical-align:bottom; margin-right: 10px; width:28px; height:21px;'><span style='font-size:14px; color:#000000;'><b>[[value]]</b></span>";
                  chart.addGraph(graph);
  
                  // third graph
                  graph = new AmCharts.AmGraph();
                  graph.type = "line";
                  graph.title = "Bicycles";
                  graph.valueField = "bicycles";
                  graph.lineAlpha = 0;
                  graph.fillAlphas = 0.6;
                  graph.balloonText = "<img src='images/bicycle.png' style='vertical-align:bottom; margin-right: 10px; width:28px; height:21px;'><span style='font-size:14px; color:#000000;'><b>[[value]]</b></span>";
                  chart.addGraph(graph);
  
                  // LEGEND
                  var legend = new AmCharts.AmLegend();
                  legend.position = "top";
                  legend.valueText = "[[value]]";
                  legend.valueWidth = 100;
                  legend.valueAlign = "left";
                  legend.equalWidths = false;
                  legend.periodValueText = "total: [[value.sum]]"; // this is displayed when mouse is not over the chart.
                  chart.addLegend(legend);
  
                  // CURSOR
                  var chartCursor = new AmCharts.ChartCursor();
                  chartCursor.cursorAlpha = 0;
                  chart.addChartCursor(chartCursor);
  
                  // SCROLLBAR
                  var chartScrollbar = new AmCharts.ChartScrollbar();
                  chartScrollbar.color = "#FFFFFF";
                  chart.addChartScrollbar(chartScrollbar);
  
                  // WRITE
                  chart.write("chartdiv");
              });
          </script>
      </head>
  
      <body>
          <div id="chartdiv" style="width:100%; height:400px;"></div>
      </body>
  
  </html>