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 3e53615 commit 54d2ca2Copy full SHA for 54d2ca2
src/plots/polar/polar.js
@@ -100,14 +100,15 @@ proto.plot = function(polarCalcData, fullLayout) {
100
var _this = this;
101
var polarLayout = fullLayout[_this.id];
102
103
- _this._hasClipOnAxisFalse = false;
+ var found = false;
104
for(var i = 0; i < polarCalcData.length; i++) {
105
var trace = polarCalcData[i][0].trace;
106
if(trace.cliponaxis === false) {
107
- _this._hasClipOnAxisFalse = true;
+ found = true;
108
break;
109
}
110
111
+ _this._hasClipOnAxisFalse = found;
112
113
_this.updateLayers(fullLayout, polarLayout);
114
_this.updateLayout(fullLayout, polarLayout);
0 commit comments