forked from felippepuhle/aero-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apps_charts.html
180 lines (162 loc) · 5.53 KB
/
apps_charts.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
---
layout: admin
title: APPs - Charts
section: apps
module: apps_charts
header:
icon: show_chart
title: Charts
description: Some charts with Google Charts and AmCharts.
stylesheets:
- css/apps/charts.css
javascripts:
- https://www.gstatic.com/charts/loader.js
- bower_components/amcharts3/amcharts/amcharts.js
- bower_components/amcharts3/amcharts/serial.js
- bower_components/amcharts3/amcharts/pie.js
- bower_components/amcharts3/amcharts/themes/light.js
- js/apps/charts.js
---
<section id="apps_charts">
<div class="charts-app">
<div class="row">
<div class="col s12">
<div class="card-panel alternative lighten-1">
You can download and use all <b>amCharts</b> products for free. The only limitation of the free version is that a small link to this web site will be displayed in the top left corner of your charts. If you would like to use charts without this link, or you appreciate the software and would like to support its creators, <a href="https://www.amcharts.com/online-store/" target="_blank">please purchase a commercial license</a>.
</div>
</div>
</div>
<div class="row">
<!-- ############# -->
<!-- Google Charts -->
<!-- ############# -->
<div class="col s12 l6">
<div class="panel panel-bordered">
<div class="panel-header">
<div class="title">
Google Charts
</div>
<div class="subtitle">
<a href="https://google-developers.appspot.com/chart/interactive/docs/quick_start" target="_blank">Click here</a> to see the documentation.
</div>
</div>
<div class="panel-header border-top-0">
<div class="subtitle">
<a href="https://developers.google.com/chart/interactive/docs/gallery/columnchart" target="_blank">
Column Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="gchart-column"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://developers.google.com/chart/interactive/docs/gallery/barchart" target="_blank">
Bar Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="gchart-bar"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://developers.google.com/chart/interactive/docs/gallery/areachart" target="_blank">
Area Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="gchart-area"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://developers.google.com/chart/interactive/docs/gallery/linechart" target="_blank">
Line Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="gchart-line"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://developers.google.com/chart/interactive/docs/gallery/piechart" target="_blank">
Pie Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="gchart-pie"></div>
</div>
</div>
</div>
<!-- ######## -->
<!-- AmCharts -->
<!-- ######## -->
<div class="col s12 l6">
<div class="panel panel-bordered panel-map z-depth-1">
<div class="panel-header">
<div class="title">
AmCharts
</div>
<div class="subtitle">
<a href="https://docs.amcharts.com/3/javascriptcharts/AmChart" target="_blank">Click here</a> to see the documentation.
</div>
</div>
<div class="panel-header border-top-0">
<div class="subtitle">
<a href="https://www.amcharts.com/demos/simple-column-chart/" target="_blank">
Simple Column Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="amchart-column"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://www.amcharts.com/demos/clustered-bar-chart/" target="_blank">
Clustered Bar Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="amchart-bar"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://www.amcharts.com/demos/stacked-area/" target="_blank">
Stacked Area
</a>
</div>
</div>
<div class="panel-body">
<div id="amchart-area"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://www.amcharts.com/demos/line-different-colors-ups-downs/" target="_blank">
Line with different colors for ups and downs
</a>
</div>
</div>
<div class="panel-body">
<div id="amchart-line"></div>
</div>
<div class="panel-header">
<div class="subtitle">
<a href="https://www.amcharts.com/demos/simple-pie-chart/" target="_blank">
Simple Pie Chart
</a>
</div>
</div>
<div class="panel-body">
<div id="amchart-pie"></div>
</div>
</div>
</div>
</div>
</div>
</section>