forked from apache/echarts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar-vertical.html
114 lines (103 loc) · 3.69 KB
/
calendar-vertical.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
<html>
<head>
<meta charset="utf-8">
<title>calendar</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="reset.css">
<script src="esl.js"></script>
<script src="config.js"></script>
<script src="lib/jquery.min.js"></script>
</head>
<body>
<style>
html, body, #main {
width: 100%;
height: 100%;
}
</style>
<div id="main"></div>
<script>
var getVirtulData = function(year) {
year = year || '2017';
var datas = [];
var arr31 = [1, 3, 5, 7, 8, 10, 12];
var arr30 = [4, 6, 9, 11];
for (var i = 1; i <= 31; i++) {
for (var j = arr31.length - 1; j >= 0; j--) {
datas.push([year + '-' + arr31[j] + '-' + i, Math.floor(Math.random() * 1000)]);
}
}
for (var i = 1; i <= 30; i++) {
for (var j = arr30.length - 1; j >= 0; j--) {
datas.push([year + '-' + arr30[j] + '-' + i, Math.floor(Math.random() * 1000)]);
}
}
for (var i = 1; i <= 29; i++) {
datas.push([year + '-2-' + i, Math.floor(Math.random() * 1000)]);
}
return datas;
}
require([
'echarts',
'echarts/chart/heatmap',
'echarts/chart/scatter',
'echarts/component/title',
'echarts/component/legend',
'echarts/component/calendar',
'echarts/component/tooltip',
'echarts/component/visualMap'
], function (echarts) {
var chart = echarts.init(document.getElementById('main'));
chart.setOption({
tooltip: {
position: 'top'
},
visualMap: {
min: 0,
max: 1000,
calculable: true,
orient: 'vertical',
left: '700',
top: 'center'
},
calendar: [
{
cellSize: [20, 'auto'],
bottom: 20,
orient: 'vertical',
range: '2015'
},
{
left: 300,
orient: 'vertical',
range: '2016'
},
{
left: 530,
orient: 'vertical',
range: '2017'
}],
series: [{
type: 'heatmap',
coordinateSystem: 'calendar',
calendarIndex: 0,
data: getVirtulData(2015)
}, {
type: 'heatmap',
coordinateSystem: 'calendar',
calendarIndex: 1,
data: getVirtulData(2016)
}, {
type: 'heatmap',
coordinateSystem: 'calendar',
calendarIndex: 2,
data: getVirtulData(2017)
}]
});
$(window).resize(function() {
chart.resize();
});
});
</script>
</body>
</html>