highcharts-rails 5.0.13 → 5.0.14
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.markdown +7 -0
- data/app/assets/javascripts/highcharts.js +6 -5
- data/app/assets/javascripts/highcharts/highcharts-3d.js +1 -1
- data/app/assets/javascripts/highcharts/highcharts-more.js +1 -1
- data/app/assets/javascripts/highcharts/modules/accessibility.js +1 -1
- data/app/assets/javascripts/highcharts/modules/annotations.js +1 -1
- data/app/assets/javascripts/highcharts/modules/boost.js +2 -11
- data/app/assets/javascripts/highcharts/modules/broken-axis.js +1 -1
- data/app/assets/javascripts/highcharts/modules/data.js +1 -1
- data/app/assets/javascripts/highcharts/modules/drilldown.js +1 -1
- data/app/assets/javascripts/highcharts/modules/exporting.js +1 -1
- data/app/assets/javascripts/highcharts/modules/funnel.js +1 -1
- data/app/assets/javascripts/highcharts/modules/grid-axis.js +1 -1
- data/app/assets/javascripts/highcharts/modules/heatmap.js +1 -1
- data/app/assets/javascripts/highcharts/modules/no-data-to-display.js +1 -1
- data/app/assets/javascripts/highcharts/modules/offline-exporting.js +2 -2
- data/app/assets/javascripts/highcharts/modules/overlapping-datalabels.js +2 -2
- data/app/assets/javascripts/highcharts/modules/series-label.js +1 -1
- data/app/assets/javascripts/highcharts/modules/solid-gauge.js +1 -1
- data/app/assets/javascripts/highcharts/modules/stock.js +1 -1
- data/app/assets/javascripts/highcharts/modules/treemap.js +1 -1
- data/app/assets/javascripts/highcharts/modules/xrange-series.js +1 -1
- data/lib/highcharts/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dbf38c9450fefa1d4e87049447c4f737505af101
|
4
|
+
data.tar.gz: 60b5319f2e37679ba699740fc0c62ba539f42d97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78bc51497dd75d4e09dce97c0cc54f2bf17fa5d0670761905fa4d50c97245e32376055365d6aeb7acf1385bd2c1e54cfd2e474338d34bb10c0d0800dbda41eb0
|
7
|
+
data.tar.gz: b7dc6633f784bd776ed3170dffb79e50ba6bfa717c0c1109c053335d23afeda0eb31b3816116ad891aa94f11a7276adc939210fab0ac9237018dad99205a90e1
|
data/CHANGELOG.markdown
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# 5.0.14 / 2017-11-10
|
2
|
+
|
3
|
+
* Updated Highcharts to 5.0.14 (2017-07-28)
|
4
|
+
* Bug fixes
|
5
|
+
* Fixed #7014, a regression causing JS error when writing a new chart to a node that was originally detached.
|
6
|
+
* Fixed JS error on inverted, bosted charts.
|
7
|
+
|
1
8
|
# 5.0.13 / 2017-11-10
|
2
9
|
|
3
10
|
* Updated Highcharts to 5.0.13 (2017-07-27)
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Highcharts JS v5.0.
|
2
|
+
* @license Highcharts JS v5.0.14 (2017-07-28)
|
3
3
|
*
|
4
4
|
* (c) 2009-2016 Torstein Honsi
|
5
5
|
*
|
@@ -35,7 +35,7 @@
|
|
35
35
|
|
36
36
|
var Highcharts = win.Highcharts ? win.Highcharts.error(16, true) : {
|
37
37
|
product: 'Highcharts',
|
38
|
-
version: '5.0.
|
38
|
+
version: '5.0.14',
|
39
39
|
deg2rad: Math.PI * 2 / 360,
|
40
40
|
doc: doc,
|
41
41
|
hasBidiBug: hasBidiBug,
|
@@ -4365,7 +4365,7 @@
|
|
4365
4365
|
|
4366
4366
|
// Add description
|
4367
4367
|
desc = this.createElement('desc').add();
|
4368
|
-
desc.element.appendChild(doc.createTextNode('Created with Highcharts 5.0.
|
4368
|
+
desc.element.appendChild(doc.createTextNode('Created with Highcharts 5.0.14'));
|
4369
4369
|
|
4370
4370
|
/**
|
4371
4371
|
* A pointer to the `defs` node of the root SVG.
|
@@ -8057,7 +8057,7 @@
|
|
8057
8057
|
* @since 2.3.0
|
8058
8058
|
* @product highcharts highstock highmaps
|
8059
8059
|
*/
|
8060
|
-
VMLRadialGradientURL: 'http://code.highcharts.com/5.0.
|
8060
|
+
VMLRadialGradientURL: 'http://code.highcharts.com/5.0.14/gfx/vml-radial-gradient.png'
|
8061
8061
|
|
8062
8062
|
},
|
8063
8063
|
chart: {
|
@@ -19465,6 +19465,7 @@
|
|
19465
19465
|
}
|
19466
19466
|
if (node.hcOrigDetached) {
|
19467
19467
|
doc.body.removeChild(node);
|
19468
|
+
node.hcOrigDetached = false;
|
19468
19469
|
}
|
19469
19470
|
node = node.parentNode;
|
19470
19471
|
}
|
@@ -29527,7 +29528,7 @@
|
|
29527
29528
|
function collectAndHide() {
|
29528
29529
|
var labels = [];
|
29529
29530
|
|
29530
|
-
each(chart.yAxis, function(yAxis) {
|
29531
|
+
each(chart.yAxis || [], function(yAxis) {
|
29531
29532
|
if (
|
29532
29533
|
yAxis.options.stackLabels &&
|
29533
29534
|
!yAxis.options.stackLabels.allowOverlap
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Highcharts JS v5.0.
|
2
|
+
* @license Highcharts JS v5.0.14 (2017-07-28)
|
3
3
|
* Boost module
|
4
4
|
*
|
5
5
|
* (c) 2010-2017 Highsoft AS
|
@@ -1979,10 +1979,7 @@
|
|
1979
1979
|
var width = chart.chartWidth,
|
1980
1980
|
height = chart.chartHeight,
|
1981
1981
|
target = chart,
|
1982
|
-
targetGroup = chart.seriesGroup || series.group
|
1983
|
-
swapXY = function(proceed, x, y, a, b, c, d) {
|
1984
|
-
proceed.call(series, y, x, a, b, c, d);
|
1985
|
-
};
|
1982
|
+
targetGroup = chart.seriesGroup || series.group;
|
1986
1983
|
|
1987
1984
|
if (isChartSeriesBoosting(chart)) {
|
1988
1985
|
target = chart;
|
@@ -2014,12 +2011,6 @@
|
|
2014
2011
|
|
2015
2012
|
target.image.clip(target.boostClipRect);
|
2016
2013
|
|
2017
|
-
if (target.inverted || (target.chart && target.chart.inverted)) {
|
2018
|
-
each(['moveTo', 'lineTo', 'rect', 'arc'], function(fn) {
|
2019
|
-
wrap(false, fn, swapXY);
|
2020
|
-
});
|
2021
|
-
}
|
2022
|
-
|
2023
2014
|
if (target instanceof H.Chart) {
|
2024
2015
|
target.markerGroup = target.renderer.g().add(targetGroup);
|
2025
2016
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Highcharts JS v5.0.
|
2
|
+
* @license Highcharts JS v5.0.14 (2017-07-28)
|
3
3
|
* Client side exporting module
|
4
4
|
*
|
5
5
|
* (c) 2015 Torstein Honsi / Oystein Moseng
|
@@ -515,7 +515,7 @@
|
|
515
515
|
|
516
516
|
// Extend the default options to use the local exporter logic
|
517
517
|
merge(true, Highcharts.getOptions().exporting, {
|
518
|
-
libURL: 'https://code.highcharts.com/5.0.
|
518
|
+
libURL: 'https://code.highcharts.com/5.0.14/lib/',
|
519
519
|
|
520
520
|
// When offline-exporting is loaded, redefine the menu item definitions
|
521
521
|
// related to download.
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* @license Highcharts JS v5.0.
|
2
|
+
* @license Highcharts JS v5.0.14 (2017-07-28)
|
3
3
|
*
|
4
4
|
* (c) 2009-2017 Torstein Honsi
|
5
5
|
*
|
@@ -36,7 +36,7 @@
|
|
36
36
|
function collectAndHide() {
|
37
37
|
var labels = [];
|
38
38
|
|
39
|
-
each(chart.yAxis, function(yAxis) {
|
39
|
+
each(chart.yAxis || [], function(yAxis) {
|
40
40
|
if (
|
41
41
|
yAxis.options.stackLabels &&
|
42
42
|
!yAxis.options.stackLabels.allowOverlap
|
data/lib/highcharts/version.rb
CHANGED