Skip to content

Commit

Permalink
Fixed #5572, pie slices were not hidden in 3D pie charts on legend cl…
Browse files Browse the repository at this point in the history
…ick.
  • Loading branch information
TorsteinHonsi committed Aug 11, 2016
1 parent b5f85be commit 7f60196
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion js/highcharts-3d.src.js
Expand Up @@ -2,7 +2,7 @@
// @compilation_level SIMPLE_OPTIMIZATIONS

/**
* @license Highcharts JS v4.2.6-modified (2016-08-02)
* @license Highcharts JS v4.2.6-modified (2016-08-11)
*
* 3D features for Highcharts JS
*
Expand Down Expand Up @@ -503,6 +503,7 @@
}));
};
}
animation = anim; // Only when duration (#5572)
}
return proceed.call(this, params, animation, complete);
});
Expand Down
2 changes: 1 addition & 1 deletion js/highmaps.src.js
Expand Up @@ -17205,7 +17205,7 @@
minColor: '#EFEFFF',
maxColor: '#003875',
tickLength: 5,
showInLegend: true
showInLegend: true // docs: API record is being added.
},
init: function (chart, userOptions) {
var horiz = chart.options.legend.layout !== 'vertical',
Expand Down
4 changes: 2 additions & 2 deletions js/modules/heatmap.src.js
@@ -1,5 +1,5 @@
/**
* @license Highcharts JS v4.2.6-modified (2016-08-02)
* @license Highcharts JS v4.2.6-modified (2016-08-11)
*
* (c) 2011-2016 Torstein Honsi
*
Expand Down Expand Up @@ -69,7 +69,7 @@
minColor: '#EFEFFF',
maxColor: '#003875',
tickLength: 5,
showInLegend: true
showInLegend: true // docs: API record is being added.
},
init: function (chart, userOptions) {
var horiz = chart.options.legend.layout !== 'vertical',
Expand Down
4 changes: 2 additions & 2 deletions js/modules/map.src.js
@@ -1,5 +1,5 @@
/**
* @license Highmaps JS v4.2.6-modified (2016-08-02)
* @license Highmaps JS v4.2.6-modified (2016-08-11)
* Highmaps as a plugin for Highcharts 4.1.x or Highstock 2.1.x (x being the patch version of this file)
*
* (c) 2011-2016 Torstein Honsi
Expand Down Expand Up @@ -185,7 +185,7 @@
minColor: '#EFEFFF',
maxColor: '#003875',
tickLength: 5,
showInLegend: true
showInLegend: true // docs: API record is being added.
},
init: function (chart, userOptions) {
var horiz = chart.options.legend.layout !== 'vertical',
Expand Down
1 change: 1 addition & 0 deletions js/parts-3d/SVGRenderer.js
Expand Up @@ -377,6 +377,7 @@ Highcharts.SVGRenderer.prototype.arc3d = function (attribs) {
}));
};
}
animation = anim; // Only when duration (#5572)
}
return proceed.call(this, params, animation, complete);
});
Expand Down

0 comments on commit 7f60196

Please sign in to comment.