-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfancy-theme.js
50 lines (49 loc) · 872 Bytes
/
fancy-theme.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
(function(Highcharts){
'use strict';
Highcharts.setOptions({
exporting: null,
title: { text: null },
colors: [
'#D70060',
'#00A1CB',
'#61AE24',
'#F18D05',
'#D0D102',
'#E54028',
'#01A4A4'
],
yAxis: {
visible: false,
gridLineColor:'#f1f1f1',
title: { text: null },
},
tooltip: {
shared: true,
valueSuffix: ' units'
},
credits: { enabled: false },
legend:{
borderWidth: 0,
verticalAlign: 'top',
align: 'right',
floating: true,
style: {left: 0}
},
series: {
allowPointSelect: true
},
plotOptions: {
series: {
lineWidth: 4,
fillOpacity: 0.2,
marker: {
radius: 0,
symbol: 'circle',
states: {
hover: { radius: 5 }
}
}
}
}
});
}(Highcharts));