Unexpected vertical line in full pie chart #6616
Comments
Thanks for reporting. |
Workaround |
If you have But if you mouseover the pie chart, a small line appears: @TorsteinHonsi , do you think I should create a new task for this, or do you not consider a bug? Many thanks, |
I found a simple fix for it in the This is the kind of change that may be considered a bug by some (after all we are looking at one slice that starts and ends at the top), so depending on the feedback we may add an option for whether or not to close full-circle pie slices. |
I have a highchart(pie chart) with multiple fields.Which is giving me issue for 0 values. The conditions are as described below: If my first field is 100% the pie chart renders a line of 0% for the other field but if my second field is 100% then the pie chart does not render a 0% field for the first fields |
Thank you for reporting about the problem. |
WorkaroundYou can override the Highcharts.wrap(Highcharts.seriesTypes.pie.prototype, 'drawPoints', function(proceed) {
Highcharts.each(this.points, function(p) {
if (p.shapeArgs) {
p.shapeArgs.open = false;
}
});
proceed.call(this);
}); |
Hi @TorsteinHonsi, |
Hi @Yatin07 Please contact our support team: https://www.highcharts.com/blog/support/ - this is our bug tracker and your issue is not connected to this Pie chart issue. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions! |
Unstale |
Live demo: http://jsfiddle.net/LLExL/7421/
The text was updated successfully, but these errors were encountered: