highstock-rails 2.1.10 → 5.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/css/highcharts.css +760 -0
  3. data/app/assets/javascripts/highstock.js +511 -419
  4. data/app/assets/javascripts/highstock/highstock.js +472 -0
  5. data/app/assets/javascripts/highstock/highstock.js.map +8 -0
  6. data/app/assets/javascripts/highstock/highstock.src.js +28809 -0
  7. data/app/assets/javascripts/highstock/modules/accessibility.js +48 -0
  8. data/app/assets/javascripts/highstock/modules/accessibility.js.map +8 -0
  9. data/app/assets/javascripts/highstock/modules/accessibility.src.js +1131 -0
  10. data/app/assets/javascripts/highstock/modules/annotations.js +14 -0
  11. data/app/assets/javascripts/highstock/modules/annotations.js.map +8 -0
  12. data/app/assets/javascripts/highstock/modules/annotations.src.js +407 -0
  13. data/app/assets/javascripts/highstock/modules/boost-canvas.js +23 -0
  14. data/app/assets/javascripts/highstock/modules/boost-canvas.js.map +8 -0
  15. data/app/assets/javascripts/highstock/modules/boost-canvas.src.js +771 -0
  16. data/app/assets/javascripts/highstock/modules/boost.js +51 -12
  17. data/app/assets/javascripts/highstock/modules/boost.js.map +8 -0
  18. data/app/assets/javascripts/highstock/modules/boost.src.js +2580 -492
  19. data/app/assets/javascripts/highstock/modules/broken-axis.js.map +8 -0
  20. data/app/assets/javascripts/highstock/modules/canvasrenderer.experimental.js.map +8 -0
  21. data/app/assets/javascripts/highstock/modules/data.js +19 -19
  22. data/app/assets/javascripts/highstock/modules/data.js.map +8 -0
  23. data/app/assets/javascripts/highstock/modules/data.src.js +974 -950
  24. data/app/assets/javascripts/highstock/modules/drilldown.js +25 -17
  25. data/app/assets/javascripts/highstock/modules/drilldown.js.map +8 -0
  26. data/app/assets/javascripts/highstock/modules/drilldown.src.js +790 -709
  27. data/app/assets/javascripts/highstock/modules/export-data.js +17 -0
  28. data/app/assets/javascripts/highstock/modules/export-data.js.map +8 -0
  29. data/app/assets/javascripts/highstock/modules/export-data.src.js +417 -0
  30. data/app/assets/javascripts/highstock/modules/exporting.js +21 -18
  31. data/app/assets/javascripts/highstock/modules/exporting.js.map +8 -0
  32. data/app/assets/javascripts/highstock/modules/exporting.src.js +1013 -768
  33. data/app/assets/javascripts/highstock/modules/funnel.js +6 -7
  34. data/app/assets/javascripts/highstock/modules/funnel.js.map +8 -0
  35. data/app/assets/javascripts/highstock/modules/funnel.src.js +284 -308
  36. data/app/assets/javascripts/highstock/modules/gantt.js +24 -0
  37. data/app/assets/javascripts/highstock/modules/gantt.js.map +8 -0
  38. data/app/assets/javascripts/highstock/modules/gantt.src.js +793 -0
  39. data/app/assets/javascripts/highstock/modules/grid-axis.js +19 -0
  40. data/app/assets/javascripts/highstock/modules/grid-axis.js.map +8 -0
  41. data/app/assets/javascripts/highstock/modules/grid-axis.src.js +545 -0
  42. data/app/assets/javascripts/highstock/modules/heatmap.js +20 -18
  43. data/app/assets/javascripts/highstock/modules/heatmap.js.map +8 -0
  44. data/app/assets/javascripts/highstock/modules/heatmap.src.js +738 -633
  45. data/app/assets/javascripts/highstock/modules/map-parser.js.map +8 -0
  46. data/app/assets/javascripts/highstock/modules/map.js.map +8 -0
  47. data/app/assets/javascripts/highstock/modules/no-data-to-display.js +5 -5
  48. data/app/assets/javascripts/highstock/modules/no-data-to-display.js.map +8 -0
  49. data/app/assets/javascripts/highstock/modules/no-data-to-display.src.js +140 -133
  50. data/app/assets/javascripts/highstock/modules/offline-exporting.js +12 -7
  51. data/app/assets/javascripts/highstock/modules/offline-exporting.js.map +8 -0
  52. data/app/assets/javascripts/highstock/modules/offline-exporting.src.js +543 -270
  53. data/app/assets/javascripts/highstock/modules/overlapping-datalabels.js +10 -0
  54. data/app/assets/javascripts/highstock/modules/overlapping-datalabels.js.map +8 -0
  55. data/app/assets/javascripts/highstock/modules/overlapping-datalabels.src.js +187 -0
  56. data/app/assets/javascripts/highstock/modules/series-label.js +19 -0
  57. data/app/assets/javascripts/highstock/modules/series-label.js.map +8 -0
  58. data/app/assets/javascripts/highstock/modules/series-label.src.js +606 -0
  59. data/app/assets/javascripts/highstock/modules/solid-gauge.js +9 -8
  60. data/app/assets/javascripts/highstock/modules/solid-gauge.js.map +8 -0
  61. data/app/assets/javascripts/highstock/modules/solid-gauge.src.js +334 -266
  62. data/app/assets/javascripts/highstock/modules/static-scale.js +12 -0
  63. data/app/assets/javascripts/highstock/modules/static-scale.js.map +8 -0
  64. data/app/assets/javascripts/highstock/modules/static-scale.src.js +64 -0
  65. data/app/assets/javascripts/highstock/modules/stock.js +123 -0
  66. data/app/assets/javascripts/highstock/modules/stock.js.map +8 -0
  67. data/app/assets/javascripts/highstock/modules/stock.src.js +6247 -0
  68. data/app/assets/javascripts/highstock/modules/treemap.js +22 -23
  69. data/app/assets/javascripts/highstock/modules/treemap.js.map +8 -0
  70. data/app/assets/javascripts/highstock/modules/treemap.src.js +884 -859
  71. data/app/assets/javascripts/highstock/modules/xrange-series.js +15 -0
  72. data/app/assets/javascripts/highstock/modules/xrange-series.js.map +8 -0
  73. data/app/assets/javascripts/highstock/modules/xrange-series.src.js +258 -0
  74. data/app/assets/javascripts/highstock/themes/dark-blue.js +307 -244
  75. data/app/assets/javascripts/highstock/themes/dark-green.js +303 -244
  76. data/app/assets/javascripts/highstock/themes/dark-unica.js +231 -201
  77. data/app/assets/javascripts/highstock/themes/gray.js +314 -245
  78. data/app/assets/javascripts/highstock/themes/grid-light.js +91 -66
  79. data/app/assets/javascripts/highstock/themes/grid.js +124 -96
  80. data/app/assets/javascripts/highstock/themes/sand-signika.js +119 -94
  81. data/app/assets/javascripts/highstock/themes/skies.js +108 -85
  82. data/lib/highstock/rails/version.rb +1 -1
  83. metadata +54 -11
  84. data/app/assets/javascripts/highstock/adapters/standalone-framework.js +0 -18
  85. data/app/assets/javascripts/highstock/adapters/standalone-framework.src.js +0 -635
  86. data/app/assets/javascripts/highstock/highcharts-3d.js +0 -48
  87. data/app/assets/javascripts/highstock/highcharts-3d.src.js +0 -1711
  88. data/app/assets/javascripts/highstock/highcharts-more.js +0 -55
  89. data/app/assets/javascripts/highstock/highstock-all.js +0 -637
  90. data/app/assets/javascripts/highstock/modules/canvas-tools.js +0 -133
  91. data/app/assets/javascripts/highstock/modules/canvas-tools.src.js +0 -3114
@@ -1,74 +1,99 @@
1
1
  /**
2
- * Grid-light theme for Highcharts JS
3
- * @author Torstein Honsi
2
+ * @license Highcharts JS v5.0.11 (2017-05-04)
3
+ *
4
+ * (c) 2009-2017 Torstein Honsi
5
+ *
6
+ * License: www.highcharts.com/license
4
7
  */
8
+ 'use strict';
9
+ (function(factory) {
10
+ if (typeof module === 'object' && module.exports) {
11
+ module.exports = factory;
12
+ } else {
13
+ factory(Highcharts);
14
+ }
15
+ }(function(Highcharts) {
16
+ (function(Highcharts) {
17
+ /**
18
+ * (c) 2010-2017 Torstein Honsi
19
+ *
20
+ * License: www.highcharts.com/license
21
+ *
22
+ * Grid-light theme for Highcharts JS
23
+ * @author Torstein Honsi
24
+ */
5
25
 
6
- // Load the fonts
7
- Highcharts.createElement('link', {
8
- href: '//fonts.googleapis.com/css?family=Dosis:400,600',
9
- rel: 'stylesheet',
10
- type: 'text/css'
11
- }, null, document.getElementsByTagName('head')[0]);
26
+ /* global document */
27
+ // Load the fonts
28
+ Highcharts.createElement('link', {
29
+ href: 'https://fonts.googleapis.com/css?family=Dosis:400,600',
30
+ rel: 'stylesheet',
31
+ type: 'text/css'
32
+ }, null, document.getElementsByTagName('head')[0]);
12
33
 
13
- Highcharts.theme = {
14
- colors: ["#7cb5ec", "#f7a35c", "#90ee7e", "#7798BF", "#aaeeee", "#ff0066", "#eeaaee",
15
- "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"],
16
- chart: {
17
- backgroundColor: null,
18
- style: {
19
- fontFamily: "Dosis, sans-serif"
20
- }
21
- },
22
- title: {
23
- style: {
24
- fontSize: '16px',
25
- fontWeight: 'bold',
26
- textTransform: 'uppercase'
27
- }
28
- },
29
- tooltip: {
30
- borderWidth: 0,
31
- backgroundColor: 'rgba(219,219,216,0.8)',
32
- shadow: false
33
- },
34
- legend: {
35
- itemStyle: {
36
- fontWeight: 'bold',
37
- fontSize: '13px'
38
- }
39
- },
40
- xAxis: {
41
- gridLineWidth: 1,
42
- labels: {
43
- style: {
44
- fontSize: '12px'
45
- }
46
- }
47
- },
48
- yAxis: {
49
- minorTickInterval: 'auto',
50
- title: {
51
- style: {
52
- textTransform: 'uppercase'
53
- }
54
- },
55
- labels: {
56
- style: {
57
- fontSize: '12px'
58
- }
59
- }
60
- },
61
- plotOptions: {
62
- candlestick: {
63
- lineColor: '#404048'
64
- }
65
- },
34
+ Highcharts.theme = {
35
+ colors: ['#7cb5ec', '#f7a35c', '#90ee7e', '#7798BF', '#aaeeee', '#ff0066', '#eeaaee',
36
+ '#55BF3B', '#DF5353', '#7798BF', '#aaeeee'
37
+ ],
38
+ chart: {
39
+ backgroundColor: null,
40
+ style: {
41
+ fontFamily: 'Dosis, sans-serif'
42
+ }
43
+ },
44
+ title: {
45
+ style: {
46
+ fontSize: '16px',
47
+ fontWeight: 'bold',
48
+ textTransform: 'uppercase'
49
+ }
50
+ },
51
+ tooltip: {
52
+ borderWidth: 0,
53
+ backgroundColor: 'rgba(219,219,216,0.8)',
54
+ shadow: false
55
+ },
56
+ legend: {
57
+ itemStyle: {
58
+ fontWeight: 'bold',
59
+ fontSize: '13px'
60
+ }
61
+ },
62
+ xAxis: {
63
+ gridLineWidth: 1,
64
+ labels: {
65
+ style: {
66
+ fontSize: '12px'
67
+ }
68
+ }
69
+ },
70
+ yAxis: {
71
+ minorTickInterval: 'auto',
72
+ title: {
73
+ style: {
74
+ textTransform: 'uppercase'
75
+ }
76
+ },
77
+ labels: {
78
+ style: {
79
+ fontSize: '12px'
80
+ }
81
+ }
82
+ },
83
+ plotOptions: {
84
+ candlestick: {
85
+ lineColor: '#404048'
86
+ }
87
+ },
66
88
 
67
89
 
68
- // General
69
- background2: '#F0F0EA'
90
+ // General
91
+ background2: '#F0F0EA'
70
92
 
71
- };
93
+ };
72
94
 
73
- // Apply the theme
74
- Highcharts.setOptions(Highcharts.theme);
95
+ // Apply the theme
96
+ Highcharts.setOptions(Highcharts.theme);
97
+
98
+ }(Highcharts));
99
+ }));
@@ -1,103 +1,131 @@
1
1
  /**
2
- * Grid theme for Highcharts JS
3
- * @author Torstein Honsi
2
+ * @license Highcharts JS v5.0.11 (2017-05-04)
3
+ *
4
+ * (c) 2009-2017 Torstein Honsi
5
+ *
6
+ * License: www.highcharts.com/license
4
7
  */
8
+ 'use strict';
9
+ (function(factory) {
10
+ if (typeof module === 'object' && module.exports) {
11
+ module.exports = factory;
12
+ } else {
13
+ factory(Highcharts);
14
+ }
15
+ }(function(Highcharts) {
16
+ (function(Highcharts) {
17
+ /**
18
+ * (c) 2010-2017 Torstein Honsi
19
+ *
20
+ * License: www.highcharts.com/license
21
+ *
22
+ * Grid theme for Highcharts JS
23
+ * @author Torstein Honsi
24
+ */
5
25
 
6
- Highcharts.theme = {
7
- colors: ['#058DC7', '#50B432', '#ED561B', '#DDDF00', '#24CBE5', '#64E572', '#FF9655', '#FFF263', '#6AF9C4'],
8
- chart: {
9
- backgroundColor: {
10
- linearGradient: { x1: 0, y1: 0, x2: 1, y2: 1 },
11
- stops: [
12
- [0, 'rgb(255, 255, 255)'],
13
- [1, 'rgb(240, 240, 255)']
14
- ]
15
- },
16
- borderWidth: 2,
17
- plotBackgroundColor: 'rgba(255, 255, 255, .9)',
18
- plotShadow: true,
19
- plotBorderWidth: 1
20
- },
21
- title: {
22
- style: {
23
- color: '#000',
24
- font: 'bold 16px "Trebuchet MS", Verdana, sans-serif'
25
- }
26
- },
27
- subtitle: {
28
- style: {
29
- color: '#666666',
30
- font: 'bold 12px "Trebuchet MS", Verdana, sans-serif'
31
- }
32
- },
33
- xAxis: {
34
- gridLineWidth: 1,
35
- lineColor: '#000',
36
- tickColor: '#000',
37
- labels: {
38
- style: {
39
- color: '#000',
40
- font: '11px Trebuchet MS, Verdana, sans-serif'
41
- }
42
- },
43
- title: {
44
- style: {
45
- color: '#333',
46
- fontWeight: 'bold',
47
- fontSize: '12px',
48
- fontFamily: 'Trebuchet MS, Verdana, sans-serif'
26
+ Highcharts.theme = {
27
+ colors: ['#058DC7', '#50B432', '#ED561B', '#DDDF00', '#24CBE5', '#64E572', '#FF9655', '#FFF263', '#6AF9C4'],
28
+ chart: {
29
+ backgroundColor: {
30
+ linearGradient: {
31
+ x1: 0,
32
+ y1: 0,
33
+ x2: 1,
34
+ y2: 1
35
+ },
36
+ stops: [
37
+ [0, 'rgb(255, 255, 255)'],
38
+ [1, 'rgb(240, 240, 255)']
39
+ ]
40
+ },
41
+ borderWidth: 2,
42
+ plotBackgroundColor: 'rgba(255, 255, 255, .9)',
43
+ plotShadow: true,
44
+ plotBorderWidth: 1
45
+ },
46
+ title: {
47
+ style: {
48
+ color: '#000',
49
+ font: 'bold 16px "Trebuchet MS", Verdana, sans-serif'
50
+ }
51
+ },
52
+ subtitle: {
53
+ style: {
54
+ color: '#666666',
55
+ font: 'bold 12px "Trebuchet MS", Verdana, sans-serif'
56
+ }
57
+ },
58
+ xAxis: {
59
+ gridLineWidth: 1,
60
+ lineColor: '#000',
61
+ tickColor: '#000',
62
+ labels: {
63
+ style: {
64
+ color: '#000',
65
+ font: '11px Trebuchet MS, Verdana, sans-serif'
66
+ }
67
+ },
68
+ title: {
69
+ style: {
70
+ color: '#333',
71
+ fontWeight: 'bold',
72
+ fontSize: '12px',
73
+ fontFamily: 'Trebuchet MS, Verdana, sans-serif'
49
74
 
50
- }
51
- }
52
- },
53
- yAxis: {
54
- minorTickInterval: 'auto',
55
- lineColor: '#000',
56
- lineWidth: 1,
57
- tickWidth: 1,
58
- tickColor: '#000',
59
- labels: {
60
- style: {
61
- color: '#000',
62
- font: '11px Trebuchet MS, Verdana, sans-serif'
63
- }
64
- },
65
- title: {
66
- style: {
67
- color: '#333',
68
- fontWeight: 'bold',
69
- fontSize: '12px',
70
- fontFamily: 'Trebuchet MS, Verdana, sans-serif'
71
- }
72
- }
73
- },
74
- legend: {
75
- itemStyle: {
76
- font: '9pt Trebuchet MS, Verdana, sans-serif',
77
- color: 'black'
75
+ }
76
+ }
77
+ },
78
+ yAxis: {
79
+ minorTickInterval: 'auto',
80
+ lineColor: '#000',
81
+ lineWidth: 1,
82
+ tickWidth: 1,
83
+ tickColor: '#000',
84
+ labels: {
85
+ style: {
86
+ color: '#000',
87
+ font: '11px Trebuchet MS, Verdana, sans-serif'
88
+ }
89
+ },
90
+ title: {
91
+ style: {
92
+ color: '#333',
93
+ fontWeight: 'bold',
94
+ fontSize: '12px',
95
+ fontFamily: 'Trebuchet MS, Verdana, sans-serif'
96
+ }
97
+ }
98
+ },
99
+ legend: {
100
+ itemStyle: {
101
+ font: '9pt Trebuchet MS, Verdana, sans-serif',
102
+ color: 'black'
78
103
 
79
- },
80
- itemHoverStyle: {
81
- color: '#039'
82
- },
83
- itemHiddenStyle: {
84
- color: 'gray'
85
- }
86
- },
87
- labels: {
88
- style: {
89
- color: '#99b'
90
- }
91
- },
104
+ },
105
+ itemHoverStyle: {
106
+ color: '#039'
107
+ },
108
+ itemHiddenStyle: {
109
+ color: 'gray'
110
+ }
111
+ },
112
+ labels: {
113
+ style: {
114
+ color: '#99b'
115
+ }
116
+ },
92
117
 
93
- navigation: {
94
- buttonOptions: {
95
- theme: {
96
- stroke: '#CCCCCC'
97
- }
98
- }
99
- }
100
- };
118
+ navigation: {
119
+ buttonOptions: {
120
+ theme: {
121
+ stroke: '#CCCCCC'
122
+ }
123
+ }
124
+ }
125
+ };
101
126
 
102
- // Apply the theme
103
- var highchartsOptions = Highcharts.setOptions(Highcharts.theme);
127
+ // Apply the theme
128
+ Highcharts.setOptions(Highcharts.theme);
129
+
130
+ }(Highcharts));
131
+ }));
@@ -1,104 +1,129 @@
1
1
  /**
2
- * Sand-Signika theme for Highcharts JS
3
- * @author Torstein Honsi
2
+ * @license Highcharts JS v5.0.11 (2017-05-04)
3
+ *
4
+ * (c) 2009-2017 Torstein Honsi
5
+ *
6
+ * License: www.highcharts.com/license
4
7
  */
8
+ 'use strict';
9
+ (function(factory) {
10
+ if (typeof module === 'object' && module.exports) {
11
+ module.exports = factory;
12
+ } else {
13
+ factory(Highcharts);
14
+ }
15
+ }(function(Highcharts) {
16
+ (function(Highcharts) {
17
+ /**
18
+ * (c) 2010-2017 Torstein Honsi
19
+ *
20
+ * License: www.highcharts.com/license
21
+ *
22
+ * Sand-Signika theme for Highcharts JS
23
+ * @author Torstein Honsi
24
+ */
5
25
 
6
- // Load the fonts
7
- Highcharts.createElement('link', {
8
- href: '//fonts.googleapis.com/css?family=Signika:400,700',
9
- rel: 'stylesheet',
10
- type: 'text/css'
11
- }, null, document.getElementsByTagName('head')[0]);
26
+ /* global document */
27
+ // Load the fonts
28
+ Highcharts.createElement('link', {
29
+ href: 'https://fonts.googleapis.com/css?family=Signika:400,700',
30
+ rel: 'stylesheet',
31
+ type: 'text/css'
32
+ }, null, document.getElementsByTagName('head')[0]);
12
33
 
13
- // Add the background image to the container
14
- Highcharts.wrap(Highcharts.Chart.prototype, 'getContainer', function (proceed) {
15
- proceed.call(this);
16
- this.container.style.background = 'url(http://www.highcharts.com/samples/graphics/sand.png)';
17
- });
34
+ // Add the background image to the container
35
+ Highcharts.wrap(Highcharts.Chart.prototype, 'getContainer', function(proceed) {
36
+ proceed.call(this);
37
+ this.container.style.background = 'url(http://www.highcharts.com/samples/graphics/sand.png)';
38
+ });
18
39
 
19
40
 
20
- Highcharts.theme = {
21
- colors: ["#f45b5b", "#8085e9", "#8d4654", "#7798BF", "#aaeeee", "#ff0066", "#eeaaee",
22
- "#55BF3B", "#DF5353", "#7798BF", "#aaeeee"],
23
- chart: {
24
- backgroundColor: null,
25
- style: {
26
- fontFamily: "Signika, serif"
27
- }
28
- },
29
- title: {
30
- style: {
31
- color: 'black',
32
- fontSize: '16px',
33
- fontWeight: 'bold'
34
- }
35
- },
36
- subtitle: {
37
- style: {
38
- color: 'black'
39
- }
40
- },
41
- tooltip: {
42
- borderWidth: 0
43
- },
44
- legend: {
45
- itemStyle: {
46
- fontWeight: 'bold',
47
- fontSize: '13px'
48
- }
49
- },
50
- xAxis: {
51
- labels: {
52
- style: {
53
- color: '#6e6e70'
54
- }
55
- }
56
- },
57
- yAxis: {
58
- labels: {
59
- style: {
60
- color: '#6e6e70'
61
- }
62
- }
63
- },
64
- plotOptions: {
65
- series: {
66
- shadow: true
67
- },
68
- candlestick: {
69
- lineColor: '#404048'
70
- },
71
- map: {
72
- shadow: false
73
- }
74
- },
41
+ Highcharts.theme = {
42
+ colors: ['#f45b5b', '#8085e9', '#8d4654', '#7798BF', '#aaeeee', '#ff0066', '#eeaaee',
43
+ '#55BF3B', '#DF5353', '#7798BF', '#aaeeee'
44
+ ],
45
+ chart: {
46
+ backgroundColor: null,
47
+ style: {
48
+ fontFamily: 'Signika, serif'
49
+ }
50
+ },
51
+ title: {
52
+ style: {
53
+ color: 'black',
54
+ fontSize: '16px',
55
+ fontWeight: 'bold'
56
+ }
57
+ },
58
+ subtitle: {
59
+ style: {
60
+ color: 'black'
61
+ }
62
+ },
63
+ tooltip: {
64
+ borderWidth: 0
65
+ },
66
+ legend: {
67
+ itemStyle: {
68
+ fontWeight: 'bold',
69
+ fontSize: '13px'
70
+ }
71
+ },
72
+ xAxis: {
73
+ labels: {
74
+ style: {
75
+ color: '#6e6e70'
76
+ }
77
+ }
78
+ },
79
+ yAxis: {
80
+ labels: {
81
+ style: {
82
+ color: '#6e6e70'
83
+ }
84
+ }
85
+ },
86
+ plotOptions: {
87
+ series: {
88
+ shadow: true
89
+ },
90
+ candlestick: {
91
+ lineColor: '#404048'
92
+ },
93
+ map: {
94
+ shadow: false
95
+ }
96
+ },
75
97
 
76
- // Highstock specific
77
- navigator: {
78
- xAxis: {
79
- gridLineColor: '#D0D0D8'
80
- }
81
- },
82
- rangeSelector: {
83
- buttonTheme: {
84
- fill: 'white',
85
- stroke: '#C0C0C8',
86
- 'stroke-width': 1,
87
- states: {
88
- select: {
89
- fill: '#D0D0D8'
90
- }
91
- }
92
- }
93
- },
94
- scrollbar: {
95
- trackBorderColor: '#C0C0C8'
96
- },
98
+ // Highstock specific
99
+ navigator: {
100
+ xAxis: {
101
+ gridLineColor: '#D0D0D8'
102
+ }
103
+ },
104
+ rangeSelector: {
105
+ buttonTheme: {
106
+ fill: 'white',
107
+ stroke: '#C0C0C8',
108
+ 'stroke-width': 1,
109
+ states: {
110
+ select: {
111
+ fill: '#D0D0D8'
112
+ }
113
+ }
114
+ }
115
+ },
116
+ scrollbar: {
117
+ trackBorderColor: '#C0C0C8'
118
+ },
97
119
 
98
- // General
99
- background2: '#E0E0E8'
120
+ // General
121
+ background2: '#E0E0E8'
100
122
 
101
- };
123
+ };
102
124
 
103
- // Apply the theme
104
- Highcharts.setOptions(Highcharts.theme);
125
+ // Apply the theme
126
+ Highcharts.setOptions(Highcharts.theme);
127
+
128
+ }(Highcharts));
129
+ }));