-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
47 lines (40 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="js/jalali.js"></script>
<script src="js/highcharts-localization.js"></script>
</head>
<body>
</body>
<div id="container" style="height: 300px; margin-top: 2em"></div>
<script type="text/javascript">
Highcharts.setOptions({
locale: getPersianLocal()
});
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
title: {
text: 'Categorized chart'
},
tooltip: {
formatter: function () {
var date = Highcharts.localizationDateFormat('%A, %d %B %y, %H:%M:%S', new Date().getTime());
return Highcharts.localizationNumber(date);
}
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
series: [
{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}
]
});
</script>
</html>