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 9770f2c commit 0b85af2Copy full SHA for 0b85af2
src/plots/plots.js
@@ -2226,6 +2226,16 @@ plots.doCalcdata = function(gd, traces) {
2226
trace._arrayAttrs = PlotSchema.findArrayAttributes(trace);
2227
}
2228
2229
+ // TODO maybe move this to Axes.list ??
2230
+ // or better yet, make a more general Axes.list
2231
+ var polarIds = plots.getSubplotIds(fullLayout, 'polar');
2232
+ for(i = 0; i < polarIds.length; i++) {
2233
+ axList.push(
2234
+ fullLayout[polarIds[i]].radialaxis,
2235
+ fullLayout[polarIds[i]].angularaxis
2236
+ );
2237
+ }
2238
+
2239
initCategories(axList);
2240
2241
var hasCalcTransform = false;
0 commit comments