-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (106 loc) · 2.28 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Rock n Roll - 2016</title>
<meta name="description" content="chart created using amCharts live editor" />
<style>
a[title="JavaScript charts"] {
display: none;
}
</style>
<!-- amCharts javascript sources -->
<script type="text/javascript" src="http://cdn.amcharts.com/lib/3/amcharts.js"></script>
<script type="text/javascript" src="http://cdn.amcharts.com/lib/3/serial.js"></script>
<!-- amCharts javascript code -->
<script type="text/javascript">
AmCharts.makeChart("chartdiv",
{
"type": "serial",
"pathToImages": "http://cdn.amcharts.com/lib/3/images/",
"categoryField": "category",
"autoMarginOffset": 40,
"marginRight": 60,
"marginTop": 60,
"colors": [
"#FF0000"
],
"startDuration": 1,
"fontSize": 13,
"theme": "default",
"categoryAxis": {
"gridPosition": "start"
},
"trendLines": [],
"graphs": [
{
"balloonText": "[[category]]:[[value]]",
"bullet": "round",
"bulletSize": 10,
"id": "AmGraph-1",
"lineThickness": 3,
"title": "Rock-n-Roll",
"type": "smoothedLine",
"valueField": "column-1"
}
],
"guides": [],
"valueAxes": [
{
"id": "ValueAxis-1",
"title": ""
}
],
"allLabels": [],
"balloon": {},
"titles": [],
"dataProvider": [
{
"category": "11/23",
"column-1": "191.2"
},
{
"category": "11/24",
"column-1": "188.4"
},
{
"category": "11/25",
"column-1": "186.6"
},
{
"category": "11/26",
"column-1": "187.0"
},
{
"category": "11/27",
"column-1": "186.6"
},
{
"category": "11/28",
"column-1": "186.4"
},
{
"category": "11/29",
"column-1": "186"
},
{
"category": "11/30",
"column-1": "185.4"
},
{
"category": "12/01",
"column-1": "184.4"
},
{
"category": "12/11",
"column-1": "185.4"
}
]
}
);
</script>
</head>
<body>
<h2>Rock n Roll - 2016</h2>
<div id="chartdiv" style="width: 100%; height: 400px; background-color: #FFFFFF;" ></div>
</body>
</html>