2
2
// @compilation_level SIMPLE_OPTIMIZATIONS
3
3
4
4
/**
5
- * @license Highcharts JS v3.0.9 (2014-01-15 )
5
+ * @license Highcharts JS v3.0.10 (2014-03-10 )
6
6
*
7
7
* (c) 2009-2014 Torstein Honsi
8
8
*
@@ -155,7 +155,6 @@ var radialAxisMixin = {
155
155
minorTickLength : 10 ,
156
156
minorTickPosition : 'inside' ,
157
157
minorTickWidth : 1 ,
158
- plotBands : [ ] ,
159
158
tickLength : 10 ,
160
159
tickPosition : 'inside' ,
161
160
tickWidth : 2 ,
@@ -176,7 +175,6 @@ var radialAxisMixin = {
176
175
} ,
177
176
maxPadding : 0 ,
178
177
minPadding : 0 ,
179
- plotBands : [ ] ,
180
178
showLastLabel : false ,
181
179
tickLength : 0
182
180
} ,
@@ -189,7 +187,6 @@ var radialAxisMixin = {
189
187
x : - 3 ,
190
188
y : - 2
191
189
} ,
192
- plotBands : [ ] ,
193
190
showLastLabel : false ,
194
191
title : {
195
192
x : 4 ,
@@ -203,11 +200,16 @@ var radialAxisMixin = {
203
200
*/
204
201
setOptions : function ( userOptions ) {
205
202
206
- this . options = merge (
203
+ var options = this . options = merge (
207
204
this . defaultOptions ,
208
205
this . defaultRadialOptions ,
209
206
userOptions
210
207
) ;
208
+
209
+ // Make sure the plotBands array is instanciated for each Axis (#2649)
210
+ if ( ! options . plotBands ) {
211
+ options . plotBands = [ ] ;
212
+ }
211
213
212
214
} ,
213
215
@@ -272,8 +274,7 @@ var radialAxisMixin = {
272
274
}
273
275
274
276
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 ;
277
278
} else {
278
279
// This is a workaround for regression #2593, but categories still don't position correctly.
279
280
// TODO: Implement true handling of Y axis categories on gauges.
@@ -304,10 +305,16 @@ var radialAxisMixin = {
304
305
305
306
// Set the center array
306
307
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
+ }
307
313
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
+
311
318
}
312
319
} ,
313
320
@@ -795,6 +802,7 @@ seriesTypes.arearange = extendClass(seriesTypes.area, {
795
802
796
803
// Set preliminary values
797
804
point . y = point . high ;
805
+ point . _plotY = point . plotY ;
798
806
point . plotY = point . plotHigh ;
799
807
800
808
// Store original data labels and set preliminary label objects to be picked up
@@ -827,7 +835,7 @@ seriesTypes.arearange = extendClass(seriesTypes.area, {
827
835
828
836
// Reset values
829
837
point . y = point . low ;
830
- point . plotY = point . plotLow ;
838
+ point . plotY = point . _plotY ;
831
839
832
840
// Set the default offset
833
841
point . below = true ;
@@ -1020,12 +1028,18 @@ var GaugeSeries = {
1020
1028
rearLength = ( pInt ( pick ( dialOptions . rearLength , 10 ) ) * radius ) / 100 ,
1021
1029
baseWidth = dialOptions . baseWidth || 3 ,
1022
1030
topWidth = dialOptions . topWidth || 1 ,
1031
+ overshoot = options . overshoot ,
1023
1032
rotation = yAxis . startAngleRad + yAxis . translate ( point . y , null , null , null , true ) ;
1024
1033
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 ) {
1027
1040
rotation = Math . max ( yAxis . startAngleRad , Math . min ( yAxis . endAngleRad , rotation ) ) ;
1028
1041
}
1042
+
1029
1043
rotation = rotation * 180 / Math . PI ;
1030
1044
1031
1045
point . shapeType = 'path' ;
@@ -1457,6 +1471,7 @@ seriesTypes.errorbar = extendClass(seriesTypes.boxplot, {
1457
1471
} ,
1458
1472
pointValKey : 'high' , // defines the top of the tracker
1459
1473
doQuartiles : false ,
1474
+ drawDataLabels : seriesTypes . arearange ? seriesTypes . arearange . prototype . drawDataLabels : noop ,
1460
1475
1461
1476
/**
1462
1477
* Get the width and X offset, either on top of the linked series column
@@ -1947,7 +1962,7 @@ Axis.prototype.beforePadding = function () {
1947
1962
var seriesOptions = series . options ,
1948
1963
zData ;
1949
1964
1950
- if ( series . bubblePadding && series . visible ) {
1965
+ if ( series . bubblePadding && ( series . visible || ! chart . options . chart . ignoreHiddenSeries ) ) {
1951
1966
1952
1967
// Correction for #1673
1953
1968
axis . allowZoomOutside = true ;
@@ -2040,14 +2055,20 @@ Axis.prototype.beforePadding = function () {
2040
2055
var xy ,
2041
2056
chart = this . chart ,
2042
2057
plotX = point . plotX ,
2043
- plotY = point . plotY ;
2058
+ plotY = point . plotY ,
2059
+ clientX ;
2044
2060
2045
2061
// Save rectangular plotX, plotY for later computation
2046
2062
point . rectPlotX = plotX ;
2047
2063
point . rectPlotY = plotY ;
2048
2064
2049
2065
// 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
+
2051
2072
2052
2073
// Find the polar plotX and plotY
2053
2074
xy = this . xAxis . postTranslate ( point . plotX , this . yAxis . len - plotY ) ;
@@ -2330,7 +2351,6 @@ Axis.prototype.beforePadding = function () {
2330
2351
tooltipLen : 360 // degrees are the resolution unit of the tooltipPoints array
2331
2352
} ) ;
2332
2353
}
2333
-
2334
2354
// Run uber method
2335
2355
return proceed . call ( this , renew ) ;
2336
2356
} ) ;
0 commit comments