File tree Expand file tree Collapse file tree 6 files changed +118
-0
lines changed Expand file tree Collapse file tree 6 files changed +118
-0
lines changed Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+
12+ var Core = require ( './core' ) ;
13+
14+ Core . register ( [
15+ require ( './bar' ) ,
16+ require ( './pie' )
17+ ] ) ;
18+
19+ module . exports = Core ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+ var Core = require ( './core' ) ;
12+
13+ Core . register ( [
14+ require ( './bar' ) ,
15+ require ( './box' ) ,
16+ require ( './heatmap' ) ,
17+ require ( './histogram' ) ,
18+ require ( './histogram2d' ) ,
19+ require ( './histogram2dcontour' ) ,
20+ require ( './pie' ) ,
21+ require ( './contour' ) ,
22+ require ( './scatterternary' )
23+ ] ) ;
24+
25+ module . exports = Core ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+ var Core = require ( './core' ) ;
12+
13+ Core . register ( [
14+ require ( './scattergeo' ) ,
15+ require ( './choropleth' )
16+ ] ) ;
17+
18+ module . exports = Core ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+ var Core = require ( './core' ) ;
12+
13+ // Load all trace modules
14+ Core . register ( [
15+ require ( './scattergl' ) ,
16+ require ( './heatmapgl' ) ,
17+ require ( './contourgl' )
18+ ] ) ;
19+
20+ module . exports = Core ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+ var Core = require ( './core' ) ;
12+
13+ Core . register ( [
14+ require ( './scatter3d' ) ,
15+ require ( './surface' ) ,
16+ require ( './mesh3d' )
17+ ] ) ;
18+
19+ module . exports = Core ;
Original file line number Diff line number Diff line change 1+ /**
2+ * Copyright 2012-2016, Plotly, Inc.
3+ * All rights reserved.
4+ *
5+ * This source code is licensed under the MIT license found in the
6+ * LICENSE file in the root directory of this source tree.
7+ */
8+
9+ 'use strict' ;
10+
11+ var Core = require ( './core' ) ;
12+
13+ Core . register ( [
14+ require ( './scattermapbox' )
15+ ] ) ;
16+
17+ module . exports = Core ;
You can’t perform that action at this time.
0 commit comments