Skip to content

Commit 80e8a91

Browse files
committed
add ohlc and candlestick to main plotly.js lib index
1 parent 7a17e09 commit 80e8a91

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

lib/candlestick.js

+2
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9+
'use strict';
10+
911
module.exports = require('../src/traces/candlestick');

lib/index.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,22 @@ Plotly.register([
2020
require('./histogram2dcontour'),
2121
require('./pie'),
2222
require('./contour'),
23+
require('./scatterternary'),
24+
2325
require('./scatter3d'),
2426
require('./surface'),
2527
require('./mesh3d'),
28+
2629
require('./scattergeo'),
2730
require('./choropleth'),
31+
2832
require('./scattergl'),
2933
require('./pointcloud'),
30-
require('./scatterternary'),
31-
require('./scattermapbox')
34+
35+
require('./scattermapbox'),
36+
37+
require('./ohlc'),
38+
require('./candlestick')
3239
]);
3340

3441
// transforms

lib/ohlc.js

+2
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@
66
* LICENSE file in the root directory of this source tree.
77
*/
88

9+
'use strict';
10+
911
module.exports = require('../src/traces/ohlc');

0 commit comments

Comments
 (0)