Thanks to visit codestin.com Credit goes to github.com
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 01ab620 commit c8eb205Copy full SHA for c8eb205
src/plotly.js
@@ -37,13 +37,15 @@ var Plots = exports.Plots = require('./plots/plots');
37
38
var Cartesian = require('./plots/cartesian');
39
Plots.registerSubplot(Cartesian);
40
+
41
exports.Axes = require('./plots/cartesian/axes');
42
exports.Fx = require('./plots/cartesian/graph_interact');
43
44
var Geo = require('./plots/geo');
45
Plots.registerSubplot(Geo);
-exports.Scene = require('./plots/gl3d/scene');
46
-exports.Gl3dLayout = require('./plots/gl3d/layout');
47
+var Gl3d = require('./plots/gl3d');
48
+Plots.registerSubplot(Gl3d);
49
50
var Gl2d = require('./plots/gl2d');
51
Plots.registerSubplot(Gl2d);
0 commit comments