Skip to content

Commit 6390e83

Browse files
Update JavaScript to 3.0.10
1 parent 675779b commit 6390e83

12 files changed

+2761
-2385
lines changed

app/assets/javascripts/highcharts.js

+2,404-2,172
Large diffs are not rendered by default.

app/assets/javascripts/highcharts/adapters/mootools-adapter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Highcharts JS v3.0.9 (2014-01-15)
2+
* @license Highcharts JS v3.0.10 (2014-03-10)
33
* MooTools adapter
44
*
55
* (c) 2010-2014 Torstein Honsi

app/assets/javascripts/highcharts/adapters/prototype-adapter.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Highcharts JS v3.0.9 (2014-01-15)
2+
* @license Highcharts JS v3.0.10 (2014-03-10)
33
* Prototype adapter
44
*
55
* @author Michael Nelson, Torstein Honsi.

app/assets/javascripts/highcharts/adapters/standalone-framework.js

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license Highcharts JS v3.0.9 (2014-01-15)
2+
* @license Highcharts JS v3.0.10 (2014-03-10)
33
*
44
* Standalone Highcharts Framework
55
*
@@ -304,7 +304,7 @@ return {
304304
// HTML styles
305305
} else {
306306
styles = {};
307-
styles[elem] = this.now + this.unit;
307+
styles[this.prop] = this.now + this.unit;
308308
Highcharts.css(elem, styles);
309309
}
310310

@@ -350,9 +350,10 @@ return {
350350
ret,
351351
done,
352352
options = this.options,
353+
elem = this.elem,
353354
i;
354-
355-
if (this.elem.stopAnimation) {
355+
356+
if (elem.stopAnimation || (elem.attr && !elem.element)) { // #2616, element including flag is destroyed
356357
ret = false;
357358

358359
} else if (gotoEnd || t >= options.duration + this.startTime) {
@@ -371,7 +372,7 @@ return {
371372

372373
if (done) {
373374
if (options.complete) {
374-
options.complete.call(this.elem);
375+
options.complete.call(elem);
375376
}
376377
}
377378
ret = false;
@@ -504,19 +505,16 @@ return {
504505
return results;
505506
},
506507

508+
/**
509+
* Get the element's offset position, corrected by overflow:auto. Loosely based on jQuery's offset method.
510+
*/
507511
offset: function (el) {
508-
var left = 0,
509-
top = 0;
510-
511-
while (el) {
512-
left += el.offsetLeft;
513-
top += el.offsetTop;
514-
el = el.offsetParent;
515-
}
512+
var docElem = document.documentElement,
513+
box = el.getBoundingClientRect();
516514

517515
return {
518-
left: left,
519-
top: top
516+
top: box.top + (window.pageYOffset || docElem.scrollTop) - (docElem.clientTop || 0),
517+
left: box.left + (window.pageXOffset || docElem.scrollLeft) - (docElem.clientLeft || 0)
520518
};
521519
},
522520

app/assets/javascripts/highcharts/highcharts-more.js

+37-17
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// @compilation_level SIMPLE_OPTIMIZATIONS
33

44
/**
5-
* @license Highcharts JS v3.0.9 (2014-01-15)
5+
* @license Highcharts JS v3.0.10 (2014-03-10)
66
*
77
* (c) 2009-2014 Torstein Honsi
88
*
@@ -155,7 +155,6 @@ var radialAxisMixin = {
155155
minorTickLength: 10,
156156
minorTickPosition: 'inside',
157157
minorTickWidth: 1,
158-
plotBands: [],
159158
tickLength: 10,
160159
tickPosition: 'inside',
161160
tickWidth: 2,
@@ -176,7 +175,6 @@ var radialAxisMixin = {
176175
},
177176
maxPadding: 0,
178177
minPadding: 0,
179-
plotBands: [],
180178
showLastLabel: false,
181179
tickLength: 0
182180
},
@@ -189,7 +187,6 @@ var radialAxisMixin = {
189187
x: -3,
190188
y: -2
191189
},
192-
plotBands: [],
193190
showLastLabel: false,
194191
title: {
195192
x: 4,
@@ -203,11 +200,16 @@ var radialAxisMixin = {
203200
*/
204201
setOptions: function (userOptions) {
205202

206-
this.options = merge(
203+
var options = this.options = merge(
207204
this.defaultOptions,
208205
this.defaultRadialOptions,
209206
userOptions
210207
);
208+
209+
// Make sure the plotBands array is instanciated for each Axis (#2649)
210+
if (!options.plotBands) {
211+
options.plotBands = [];
212+
}
211213

212214
},
213215

@@ -272,8 +274,7 @@ var radialAxisMixin = {
272274
}
273275

274276
if (this.isXAxis) {
275-
this.minPixelPadding = this.transA * this.minPointOffset +
276-
(this.reversed ? (this.endAngleRad - this.startAngleRad) / 4 : 0); // ???
277+
this.minPixelPadding = this.transA * this.minPointOffset;
277278
} else {
278279
// This is a workaround for regression #2593, but categories still don't position correctly.
279280
// TODO: Implement true handling of Y axis categories on gauges.
@@ -304,10 +305,16 @@ var radialAxisMixin = {
304305

305306
// Set the center array
306307
this.center = this.pane.center = Highcharts.CenteredSeriesMixin.getCenter.call(this.pane);
308+
309+
// The sector is used in Axis.translate to compute the translation of reversed axis points (#2570)
310+
if (this.isCircular) {
311+
this.sector = this.endAngleRad - this.startAngleRad;
312+
}
307313

308-
this.len = this.width = this.height = this.isCircular ?
309-
this.center[2] * (this.endAngleRad - this.startAngleRad) / 2 :
310-
this.center[2] / 2;
314+
// Axis len is used to lay out the ticks
315+
this.len = this.width = this.height = this.center[2] * pick(this.sector, 1) / 2;
316+
317+
311318
}
312319
},
313320

@@ -795,6 +802,7 @@ seriesTypes.arearange = extendClass(seriesTypes.area, {
795802

796803
// Set preliminary values
797804
point.y = point.high;
805+
point._plotY = point.plotY;
798806
point.plotY = point.plotHigh;
799807

800808
// Store original data labels and set preliminary label objects to be picked up
@@ -827,7 +835,7 @@ seriesTypes.arearange = extendClass(seriesTypes.area, {
827835

828836
// Reset values
829837
point.y = point.low;
830-
point.plotY = point.plotLow;
838+
point.plotY = point._plotY;
831839

832840
// Set the default offset
833841
point.below = true;
@@ -1020,12 +1028,18 @@ var GaugeSeries = {
10201028
rearLength = (pInt(pick(dialOptions.rearLength, 10)) * radius) / 100,
10211029
baseWidth = dialOptions.baseWidth || 3,
10221030
topWidth = dialOptions.topWidth || 1,
1031+
overshoot = options.overshoot,
10231032
rotation = yAxis.startAngleRad + yAxis.translate(point.y, null, null, null, true);
10241033

1025-
// Handle the wrap option
1026-
if (options.wrap === false) {
1034+
// Handle the wrap and overshoot options
1035+
if (overshoot && typeof overshoot === 'number') {
1036+
overshoot = overshoot / 180 * Math.PI;
1037+
rotation = Math.max(yAxis.startAngleRad - overshoot, Math.min(yAxis.endAngleRad + overshoot, rotation));
1038+
1039+
} else if (options.wrap === false) {
10271040
rotation = Math.max(yAxis.startAngleRad, Math.min(yAxis.endAngleRad, rotation));
10281041
}
1042+
10291043
rotation = rotation * 180 / Math.PI;
10301044

10311045
point.shapeType = 'path';
@@ -1457,6 +1471,7 @@ seriesTypes.errorbar = extendClass(seriesTypes.boxplot, {
14571471
},
14581472
pointValKey: 'high', // defines the top of the tracker
14591473
doQuartiles: false,
1474+
drawDataLabels: seriesTypes.arearange ? seriesTypes.arearange.prototype.drawDataLabels : noop,
14601475

14611476
/**
14621477
* Get the width and X offset, either on top of the linked series column
@@ -1947,7 +1962,7 @@ Axis.prototype.beforePadding = function () {
19471962
var seriesOptions = series.options,
19481963
zData;
19491964

1950-
if (series.bubblePadding && series.visible) {
1965+
if (series.bubblePadding && (series.visible || !chart.options.chart.ignoreHiddenSeries)) {
19511966

19521967
// Correction for #1673
19531968
axis.allowZoomOutside = true;
@@ -2040,14 +2055,20 @@ Axis.prototype.beforePadding = function () {
20402055
var xy,
20412056
chart = this.chart,
20422057
plotX = point.plotX,
2043-
plotY = point.plotY;
2058+
plotY = point.plotY,
2059+
clientX;
20442060

20452061
// Save rectangular plotX, plotY for later computation
20462062
point.rectPlotX = plotX;
20472063
point.rectPlotY = plotY;
20482064

20492065
// Record the angle in degrees for use in tooltip
2050-
point.clientX = ((plotX / Math.PI * 180) + this.xAxis.pane.options.startAngle) % 360;
2066+
clientX = ((plotX / Math.PI * 180) + this.xAxis.pane.options.startAngle) % 360;
2067+
if (clientX < 0) { // #2665
2068+
clientX += 360;
2069+
}
2070+
point.clientX = clientX;
2071+
20512072

20522073
// Find the polar plotX and plotY
20532074
xy = this.xAxis.postTranslate(point.plotX, this.yAxis.len - plotY);
@@ -2330,7 +2351,6 @@ Axis.prototype.beforePadding = function () {
23302351
tooltipLen: 360 // degrees are the resolution unit of the tooltipPoints array
23312352
});
23322353
}
2333-
23342354
// Run uber method
23352355
return proceed.call(this, renew);
23362356
});

app/assets/javascripts/highcharts/modules/canvas-tools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2908,7 +2908,7 @@ if (CanvasRenderingContext2D) {
29082908
});
29092909
}
29102910
}/**
2911-
* @license Highcharts JS v3.0.9 (2014-01-15)
2911+
* @license Highcharts JS v3.0.10 (2014-03-10)
29122912
* CanVGRenderer Extension module
29132913
*
29142914
* (c) 2011-2012 Torstein Honsi, Erik Olsson

0 commit comments

Comments
 (0)