@@ -296,10 +296,6 @@ proto.updateLayout = function(fullLayout, polarLayout) {
296
296
. attr ( 'd' , dPath )
297
297
. attr ( 'transform' , strTranslate ( cx , cy ) )
298
298
. call ( Color . fill , polarLayout . bgcolor ) ;
299
-
300
- // remove crispEdges - all the off-square angles in polar plots
301
- // make these counterproductive.
302
- _this . framework . selectAll ( '.crisp' ) . classed ( 'crisp' , 0 ) ;
303
299
} ;
304
300
305
301
proto . mockAxis = function ( fullLayout , polarLayout , axLayout , opts ) {
@@ -420,14 +416,16 @@ proto.updateRadialAxis = function(fullLayout, polarLayout) {
420
416
vals : vals ,
421
417
layer : layers [ 'radial-axis' ] ,
422
418
path : Axes . makeTickPath ( ax , 0 , tickSign [ 2 ] ) ,
423
- transFn : transFn
419
+ transFn : transFn ,
420
+ noCrisp : true
424
421
} ) ;
425
422
426
423
Axes . drawGrid ( gd , ax , {
427
424
vals : valsClipped ,
428
425
layer : layers [ 'radial-grid' ] ,
429
426
path : gridPathFn ,
430
- transFn : Lib . noop
427
+ transFn : Lib . noop ,
428
+ noCrisp : true
431
429
} ) ;
432
430
433
431
Axes . drawLabels ( gd , ax , {
@@ -638,14 +636,16 @@ proto.updateAngularAxis = function(fullLayout, polarLayout) {
638
636
vals : vals ,
639
637
layer : layers [ 'angular-axis' ] ,
640
638
path : 'M' + ( tickSign [ 2 ] * pad ) + ',0h' + ( tickSign [ 2 ] * ax . ticklen ) ,
641
- transFn : transFn2
639
+ transFn : transFn2 ,
640
+ noCrisp : true
642
641
} ) ;
643
642
644
643
Axes . drawGrid ( gd , ax , {
645
644
vals : vals ,
646
645
layer : layers [ 'angular-grid' ] ,
647
646
path : gridPathFn ,
648
- transFn : Lib . noop
647
+ transFn : Lib . noop ,
648
+ noCrisp : true
649
649
} ) ;
650
650
651
651
Axes . drawLabels ( gd , ax , {
0 commit comments