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 c1055b6 commit 2247b7cCopy full SHA for 2247b7c
src/plot_api/plot_schema.js
@@ -259,12 +259,13 @@ function assignPolarLayoutAttrs(layoutAttributes) {
259
}
260
261
function getSubplotRegistry(traceType) {
262
+ if(traceType === 'area') return {}; // FIXME
263
+
264
var subplotsRegistry = Plotly.Plots.subplotsRegistry,
265
subplotType = Object.keys(subplotsRegistry).filter(function(subplotType) {
266
return Plotly.Plots.traceIs({type: traceType}, subplotType);
267
})[0];
268
- if(traceType === 'area') return {}; // FIXME
269
if(subplotType === undefined) return {};
270
271
return subplotsRegistry[subplotType];
0 commit comments