-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrafic.js
109 lines (107 loc) · 2.87 KB
/
grafic.js
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
// console.log(graficJS_HD);
// console.log(graficJS_VD);
//console.log(graficJsData);
var dom = document.getElementById("chart");
var myChart = echarts.init(dom);
var app = {};
option = null;
// color = #1ABB9C
option = {
title: {
text: 'Kinderen per dag'
},
tooltip : {
trigger: 'axis',
axisPointer: {
type: 'cross',
label: {
backgroundColor: '#73879C'
}
}
},
legend: {
data:['Kinderen Totaal', 'Kinderen Volle Dag', 'Kinderen Halve dag']
},
toolbox: {
feature: {
saveAsImage: {}
}
},
grid: {
left: '3%',
right: '4%',
bottom: '5%',
containLabel: true
},
xAxis : [
{
type : 'category',
boundaryGap : false,
data : ['W1 Dag 1', 'W1 Dag 2','W1 Dag 3','W1 Dag 4','W1 Dag 5',
'W2 Dag 1', 'W2 Dag 2','W2 Dag 3','W2 Dag 4','W2 Dag 5',
'W3 Dag 1', 'W3 Dag 2','W3 Dag 3','W3 Dag 4','W3 Dag 5',
'W4 Dag 1', 'W4 Dag 2','W4 Dag 3','W4 Dag 4','W4 Dag 5',
'W5 Dag 1', 'W5 Dag 2','W5 Dag 3','W5 Dag 4','W5 Dag 5']
}
],
yAxis : [
{
type : 'value',
max: 300
}
],
series : [
{
name:'Kinderen Totaal',
type:'line',
label: {
normal: {
show: true,
position: 'top'
}
},
itemStyle: {
normal: {
color: 'rgba(26, 187, 156, 0.5)',
lineStyle: { // 系列级个性化折线样式
width: 2,
}
}
},
areaStyle: {normal: {}},
data:graficJS
},
{
name:'Kinderen Volle Dag',
type:'line',
areaStyle: {normal: {}},
itemStyle: {
normal: {
color: 'rgba(26, 187, 156, 0.5)',
lineStyle: { // 系列级个性化折线样式
width: 2,
}
}
},
data: graficJS_VD
},
{
name:'Kinderen Halve dag',
type:'line',
areaStyle: {normal: {}},
itemStyle: {
normal: {
color: 'rgba(26, 187, 156, 0.5)',
lineStyle: { // 系列级个性化折线样式
width: 2,
}
}
},
data: graficJS_HD
}
]
};
;
if (option && typeof option === "object") {
myChart.setOption(option, true);
}