We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e81039 commit e5d238dCopy full SHA for e5d238d
src/plots/polar/polar.js
@@ -245,6 +245,10 @@ proto.updateLayout = function(fullLayout, polarLayout) {
245
_this.clipPaths.circle.select('path')
246
.attr('d', pathSectorClosed(radius, sector))
247
.attr('transform', strTranslate(cx - xOffset2, cy - yOffset2));
248
+
249
+ // remove crispEdges - all the off-square angles in polar plots
250
+ // make these counterproductive.
251
+ _this.framework.selectAll('.crisp').classed('crisp', 0);
252
};
253
254
proto.updateRadialAxis = function(fullLayout, polarLayout) {
0 commit comments