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 b453045 commit 93ef043Copy full SHA for 93ef043
src/plots/polar/polar.js
@@ -299,13 +299,7 @@ proto.updateLayout = function(fullLayout, polarLayout) {
299
};
300
301
proto.mockAxis = function(fullLayout, polarLayout, axLayout, opts) {
302
- var commonOpts = {
303
- // to get _boundingBox computation right when showticklabels is false
304
- anchor: 'free',
305
- position: 0
306
- };
307
-
308
- var ax = Lib.extendFlat(commonOpts, axLayout, opts);
+ var ax = Lib.extendFlat({}, axLayout, opts);
309
setConvertPolar(ax, polarLayout, fullLayout);
310
return ax;
311
0 commit comments