HrmReport_wev8.js
1.82 KB
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
function initChart(title,items){
jQuery('#container').highcharts({
title: {
text: title,
x: -20 //center
},
xAxis: {
categories: ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月']
},
yAxis: {
min: 0,
allowDecimals:false,
title: {
text: ''
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '人'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
credits: {
enabled: false
},
legend:{
enabled: false
},
series: [{
name: '人数',
data: jQuery.parseJSON(items)
}]
});
}
function initChart1(title,items){
$('#container1').highcharts({
chart: {
type: 'column'
},
title: {
text: title
},
xAxis: {
categories: ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月']
},
yAxis: {
min: 0,
allowDecimals:false,
title: {
text: ''
}
},
tooltip: {
valueSuffix: '人'
},
plotOptions: {
column: {
pointPadding: 0.2,
borderWidth: 0
}
},
credits: {
enabled: false
},
legend:{
enabled: false
},
series: [{
name: '人数',
data: jQuery.parseJSON(items)
}]
});
}