-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistperc.js
112 lines (107 loc) · 2.38 KB
/
histperc.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
110
111
112
var HISTPAlive = Highcharts.chart('container-histperc', {
boost: {
enabled: true,
useGPUTranslations: true,
usePreallocated: true
},
chart: {
plotBackgroundColor: null,
plotBorderWidth: 0,
plotShadow: false,
spacingBottom: -100
},
tooltip: {
enabled: false
},
title: {
text: '<h2>100%</h2>',
align: 'center',
verticalAlign: 'middle',
y: 10,
useHTML: true
},
plotOptions: {
pie: {
colors: ["#00ff00", "#ffffff"],
startAngle: -90,
endAngle: 90,
center: ['50%', '57%'],
size: '110%'
},
series: {
animation: false
}
},
series: [{
type: 'pie',
innerSize: '50%',
data: [
['', 100],
['', 0]
],
dataLabels: {
enabled: false
},
animation: false
}]
});
var HISTPAliveLegacy = Highcharts.chart('container-histperc-legacy', {
colors: ['#2E93fA', '#66DA26', '#546E7A', '#E91E63', '#FF9800', '#00FFF5', '#9F00FF'],
credits: {
enabled: false
},
exporting: {
enabled: true,
scale: 6,
buttons: {
contextButton: {
menuItems: ["downloadPNG", "downloadJPEG", "downloadPDF", "downloadSVG", "separator", "viewFullscreen", "printChart", 'downloadCSV', 'downloadXLS']
}
}
},
boost: {
enabled: true,
useGPUTranslations: true,
usePreallocated: true
},
chart: {
plotBackgroundColor: null,
plotBorderWidth: 0,
plotShadow: false,
spacingBottom: -100
},
tooltip: {
enabled: false
},
title: {
text: '<h2>100%</h2>',
align: 'center',
verticalAlign: 'middle',
y: 10,
useHTML: true
},
plotOptions: {
pie: {
colors: ["#00ff00", "#ffffff"],
startAngle: -90,
endAngle: 90,
center: ['50%', '57%'],
size: '110%'
},
series: {
animation: false
}
},
series: [{
type: 'pie',
innerSize: '50%',
data: [
['', 100],
['', 0]
],
dataLabels: {
enabled: false
},
animation: false
}]
});