@@ -39,12 +39,12 @@ Plotly.newPlot(graphDiv, data, layout, {locale: 'de-CH'})
39
39
40
40
The main plotly.js bundle includes all the official (non-beta) trace modules.
41
41
42
- It be can imported as minified javascript
42
+ It be can be imported as minified javascript
43
43
- using dist file ` dist/plotly.min.js `
44
44
- using CDN URL https://cdn.plot.ly/plotly-2.0.0-rc.2.min.js
45
45
46
46
or as raw javascript:
47
- - using the ` plotly.js-dist ` npm package (starting in ` v1.39.0 ` )
47
+ - using the ` plotly.js-dist ` npm package
48
48
- using dist file ` dist/plotly.js `
49
49
- using CDN URL https://cdn.plot.ly/plotly-2.0.0-rc.2.js
50
50
- using CommonJS with ` require('plotly.js') `
@@ -59,7 +59,7 @@ The main plotly.js bundle weights in at:
59
59
60
60
## Partial bundles
61
61
62
- Starting in ` v1.15.0 ` , plotly.js also ships with several _ partial_ bundles:
62
+ plotly.js also ships with several _ partial_ bundles:
63
63
64
64
- [ basic] ( #plotlyjs-basic )
65
65
- [ cartesian] ( #plotlyjs-cartesian )
@@ -70,13 +70,11 @@ Starting in `v1.15.0`, plotly.js also ships with several _partial_ bundles:
70
70
- [ finance] ( #plotlyjs-finance )
71
71
- [ strict] ( #plotlyjs-strict )
72
72
73
- Starting in ` v1.39.0 ` , each plotly.js partial bundle has a corresponding npm package with no dependencies.
73
+ > Each plotly.js partial bundle has a corresponding npm package with no dependencies.
74
74
75
- Starting in ` v1.50.0 ` , the minified version of each partial bundle is also published to npm in a separate "dist min" package.
75
+ > The minified version of each partial bundle is also published to npm in a separate "dist- min" package.
76
76
77
- Starting in ` v2.0.0 ` , the strict partial bundle includes everything except the traces that require function constructors.
78
- Over time we hope to include more of the remaining trace types here, after which we intend to work on other strict CSP issues
79
- such as inline CSS that we may not be able to include in the main bundle.
77
+ > The strict partial bundle includes everything except the traces that require function constructors. Over time we hope to include more of the remaining trace types here, after which we intend to work on other strict CSP issues such as inline CSS that we may not be able to include in the main bundle.
80
78
81
79
### plotly.js basic
82
80
@@ -95,7 +93,7 @@ The `basic` partial bundle contains trace modules `bar`, `pie` and `scatter`.
95
93
| Tagged | https://cdn.plot.ly/plotly-basic-2.0.0-rc.2.js |
96
94
| Tagged minified | https://cdn.plot.ly/plotly-basic-2.0.0-rc.2.min.js |
97
95
98
- #### npm package (starting in ` v1.39.0 ` )
96
+ #### npm package
99
97
100
98
Install [ ` plotly.js-basic-dist ` ] ( https://www.npmjs.com/package/plotly.js-basic-dist ) with
101
99
```
@@ -109,26 +107,16 @@ import Plotly from 'plotly.js-basic-dist'
109
107
110
108
CommonJS usage:
111
109
``` js
112
- var Plotly = require (' plotly.js-basic-dist' );
110
+ var Plotly = require (' plotly.js-basic-dist' )
113
111
```
114
112
115
- #### dist min npm package (starting in ` v1.50.0 ` )
113
+ #### dist- min npm package
116
114
117
115
Install [ ` plotly.js-basic-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-basic-dist-min ) with
118
116
```
119
117
npm install plotly.js-basic-dist-min
120
118
```
121
119
122
- #### Other plotly.js entry points
123
-
124
- | Flavor | Location |
125
- | ---------------| ----------|
126
- | dist bundle | ` dist/plotly-basic.js ` |
127
- | dist bundle (minified) | ` dist/plotly-basic.min.js ` |
128
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-basic' ` |
129
- | CommonJS | ` require('plotly.js/lib/index-basic') ` |
130
-
131
-
132
120
### plotly.js cartesian
133
121
134
122
The ` cartesian ` partial bundle contains trace modules ` bar ` , ` box ` , ` contour ` , ` heatmap ` , ` histogram ` , ` histogram2d ` , ` histogram2dcontour ` , ` image ` , ` pie ` , ` scatter ` , ` scatterternary ` and ` violin ` .
@@ -146,7 +134,7 @@ The `cartesian` partial bundle contains trace modules `bar`, `box`, `contour`, `
146
134
| Tagged | https://cdn.plot.ly/plotly-cartesian-2.0.0-rc.2.js |
147
135
| Tagged minified | https://cdn.plot.ly/plotly-cartesian-2.0.0-rc.2.min.js |
148
136
149
- #### npm package (starting in ` v1.39.0 ` )
137
+ #### npm package
150
138
151
139
Install [ ` plotly.js-cartesian-dist ` ] ( https://www.npmjs.com/package/plotly.js-cartesian-dist ) with
152
140
```
@@ -160,26 +148,16 @@ import Plotly from 'plotly.js-cartesian-dist'
160
148
161
149
CommonJS usage:
162
150
``` js
163
- var Plotly = require (' plotly.js-cartesian-dist' );
151
+ var Plotly = require (' plotly.js-cartesian-dist' )
164
152
```
165
153
166
- #### dist min npm package (starting in ` v1.50.0 ` )
154
+ #### dist- min npm package
167
155
168
156
Install [ ` plotly.js-cartesian-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-cartesian-dist-min ) with
169
157
```
170
158
npm install plotly.js-cartesian-dist-min
171
159
```
172
160
173
- #### Other plotly.js entry points
174
-
175
- | Flavor | Location |
176
- | ---------------| ----------|
177
- | dist bundle | ` dist/plotly-cartesian.js ` |
178
- | dist bundle (minified) | ` dist/plotly-cartesian.min.js ` |
179
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-cartesian' ` |
180
- | CommonJS | ` require('plotly.js/lib/index-cartesian') ` |
181
-
182
-
183
161
### plotly.js geo
184
162
185
163
The ` geo ` partial bundle contains trace modules ` choropleth ` , ` scatter ` and ` scattergeo ` .
@@ -197,7 +175,7 @@ The `geo` partial bundle contains trace modules `choropleth`, `scatter` and `sca
197
175
| Tagged | https://cdn.plot.ly/plotly-geo-2.0.0-rc.2.js |
198
176
| Tagged minified | https://cdn.plot.ly/plotly-geo-2.0.0-rc.2.min.js |
199
177
200
- #### npm package (starting in ` v1.39.0 ` )
178
+ #### npm package
201
179
202
180
Install [ ` plotly.js-geo-dist ` ] ( https://www.npmjs.com/package/plotly.js-geo-dist ) with
203
181
```
@@ -211,26 +189,16 @@ import Plotly from 'plotly.js-geo-dist'
211
189
212
190
CommonJS usage:
213
191
``` js
214
- var Plotly = require (' plotly.js-geo-dist' );
192
+ var Plotly = require (' plotly.js-geo-dist' )
215
193
```
216
194
217
- #### dist min npm package (starting in ` v1.50.0 ` )
195
+ #### dist- min npm package
218
196
219
197
Install [ ` plotly.js-geo-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-geo-dist-min ) with
220
198
```
221
199
npm install plotly.js-geo-dist-min
222
200
```
223
201
224
- #### Other plotly.js entry points
225
-
226
- | Flavor | Location |
227
- | ---------------| ----------|
228
- | dist bundle | ` dist/plotly-geo.js ` |
229
- | dist bundle (minified) | ` dist/plotly-geo.min.js ` |
230
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-geo' ` |
231
- | CommonJS | ` require('plotly.js/lib/index-geo') ` |
232
-
233
-
234
202
### plotly.js gl3d
235
203
236
204
The ` gl3d ` partial bundle contains trace modules ` cone ` , ` isosurface ` , ` mesh3d ` , ` scatter ` , ` scatter3d ` , ` streamtube ` , ` surface ` and ` volume ` .
@@ -248,7 +216,7 @@ The `gl3d` partial bundle contains trace modules `cone`, `isosurface`, `mesh3d`,
248
216
| Tagged | https://cdn.plot.ly/plotly-gl3d-2.0.0-rc.2.js |
249
217
| Tagged minified | https://cdn.plot.ly/plotly-gl3d-2.0.0-rc.2.min.js |
250
218
251
- #### npm package (starting in ` v1.39.0 ` )
219
+ #### npm package
252
220
253
221
Install [ ` plotly.js-gl3d-dist ` ] ( https://www.npmjs.com/package/plotly.js-gl3d-dist ) with
254
222
```
@@ -262,26 +230,16 @@ import Plotly from 'plotly.js-gl3d-dist'
262
230
263
231
CommonJS usage:
264
232
``` js
265
- var Plotly = require (' plotly.js-gl3d-dist' );
233
+ var Plotly = require (' plotly.js-gl3d-dist' )
266
234
```
267
235
268
- #### dist min npm package (starting in ` v1.50.0 ` )
236
+ #### dist- min npm package
269
237
270
238
Install [ ` plotly.js-gl3d-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-gl3d-dist-min ) with
271
239
```
272
240
npm install plotly.js-gl3d-dist-min
273
241
```
274
242
275
- #### Other plotly.js entry points
276
-
277
- | Flavor | Location |
278
- | ---------------| ----------|
279
- | dist bundle | ` dist/plotly-gl3d.js ` |
280
- | dist bundle (minified) | ` dist/plotly-gl3d.min.js ` |
281
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-gl3d' ` |
282
- | CommonJS | ` require('plotly.js/lib/index-gl3d') ` |
283
-
284
-
285
243
### plotly.js gl2d
286
244
287
245
The ` gl2d ` partial bundle contains trace modules ` heatmapgl ` , ` parcoords ` , ` pointcloud ` , ` scatter ` , ` scattergl ` and ` splom ` .
@@ -299,7 +257,7 @@ The `gl2d` partial bundle contains trace modules `heatmapgl`, `parcoords`, `poin
299
257
| Tagged | https://cdn.plot.ly/plotly-gl2d-2.0.0-rc.2.js |
300
258
| Tagged minified | https://cdn.plot.ly/plotly-gl2d-2.0.0-rc.2.min.js |
301
259
302
- #### npm package (starting in ` v1.39.0 ` )
260
+ #### npm package
303
261
304
262
Install [ ` plotly.js-gl2d-dist ` ] ( https://www.npmjs.com/package/plotly.js-gl2d-dist ) with
305
263
```
@@ -313,26 +271,16 @@ import Plotly from 'plotly.js-gl2d-dist'
313
271
314
272
CommonJS usage:
315
273
``` js
316
- var Plotly = require (' plotly.js-gl2d-dist' );
274
+ var Plotly = require (' plotly.js-gl2d-dist' )
317
275
```
318
276
319
- #### dist min npm package (starting in ` v1.50.0 ` )
277
+ #### dist- min npm package
320
278
321
279
Install [ ` plotly.js-gl2d-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-gl2d-dist-min ) with
322
280
```
323
281
npm install plotly.js-gl2d-dist-min
324
282
```
325
283
326
- #### Other plotly.js entry points
327
-
328
- | Flavor | Location |
329
- | ---------------| ----------|
330
- | dist bundle | ` dist/plotly-gl2d.js ` |
331
- | dist bundle (minified) | ` dist/plotly-gl2d.min.js ` |
332
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-gl2d' ` |
333
- | CommonJS | ` require('plotly.js/lib/index-gl2d') ` |
334
-
335
-
336
284
### plotly.js mapbox
337
285
338
286
The ` mapbox ` partial bundle contains trace modules ` choroplethmapbox ` , ` densitymapbox ` , ` scatter ` and ` scattermapbox ` .
@@ -350,7 +298,7 @@ The `mapbox` partial bundle contains trace modules `choroplethmapbox`, `densitym
350
298
| Tagged | https://cdn.plot.ly/plotly-mapbox-2.0.0-rc.2.js |
351
299
| Tagged minified | https://cdn.plot.ly/plotly-mapbox-2.0.0-rc.2.min.js |
352
300
353
- #### npm package (starting in ` v1.39.0 ` )
301
+ #### npm package
354
302
355
303
Install [ ` plotly.js-mapbox-dist ` ] ( https://www.npmjs.com/package/plotly.js-mapbox-dist ) with
356
304
```
@@ -364,26 +312,16 @@ import Plotly from 'plotly.js-mapbox-dist'
364
312
365
313
CommonJS usage:
366
314
``` js
367
- var Plotly = require (' plotly.js-mapbox-dist' );
315
+ var Plotly = require (' plotly.js-mapbox-dist' )
368
316
```
369
317
370
- #### dist min npm package (starting in ` v1.50.0 ` )
318
+ #### dist- min npm package
371
319
372
320
Install [ ` plotly.js-mapbox-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-mapbox-dist-min ) with
373
321
```
374
322
npm install plotly.js-mapbox-dist-min
375
323
```
376
324
377
- #### Other plotly.js entry points
378
-
379
- | Flavor | Location |
380
- | ---------------| ----------|
381
- | dist bundle | ` dist/plotly-mapbox.js ` |
382
- | dist bundle (minified) | ` dist/plotly-mapbox.min.js ` |
383
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-mapbox' ` |
384
- | CommonJS | ` require('plotly.js/lib/index-mapbox') ` |
385
-
386
-
387
325
### plotly.js finance
388
326
389
327
The ` finance ` partial bundle contains trace modules ` bar ` , ` candlestick ` , ` funnel ` , ` funnelarea ` , ` histogram ` , ` indicator ` , ` ohlc ` , ` pie ` , ` scatter ` and ` waterfall ` .
@@ -401,7 +339,7 @@ The `finance` partial bundle contains trace modules `bar`, `candlestick`, `funne
401
339
| Tagged | https://cdn.plot.ly/plotly-finance-2.0.0-rc.2.js |
402
340
| Tagged minified | https://cdn.plot.ly/plotly-finance-2.0.0-rc.2.min.js |
403
341
404
- #### npm package (starting in ` v1.39.0 ` )
342
+ #### npm package
405
343
406
344
Install [ ` plotly.js-finance-dist ` ] ( https://www.npmjs.com/package/plotly.js-finance-dist ) with
407
345
```
@@ -415,26 +353,16 @@ import Plotly from 'plotly.js-finance-dist'
415
353
416
354
CommonJS usage:
417
355
``` js
418
- var Plotly = require (' plotly.js-finance-dist' );
356
+ var Plotly = require (' plotly.js-finance-dist' )
419
357
```
420
358
421
- #### dist min npm package (starting in ` v1.50.0 ` )
359
+ #### dist- min npm package
422
360
423
361
Install [ ` plotly.js-finance-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-finance-dist-min ) with
424
362
```
425
363
npm install plotly.js-finance-dist-min
426
364
```
427
365
428
- #### Other plotly.js entry points
429
-
430
- | Flavor | Location |
431
- | ---------------| ----------|
432
- | dist bundle | ` dist/plotly-finance.js ` |
433
- | dist bundle (minified) | ` dist/plotly-finance.min.js ` |
434
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-finance' ` |
435
- | CommonJS | ` require('plotly.js/lib/index-finance') ` |
436
-
437
-
438
366
### plotly.js strict
439
367
440
368
The ` strict ` partial bundle contains trace modules ` bar ` , ` barpolar ` , ` box ` , ` candlestick ` , ` carpet ` , ` choropleth ` , ` choroplethmapbox ` , ` contour ` , ` contourcarpet ` , ` densitymapbox ` , ` funnel ` , ` funnelarea ` , ` heatmap ` , ` histogram ` , ` histogram2d ` , ` histogram2dcontour ` , ` image ` , ` indicator ` , ` ohlc ` , ` parcats ` , ` parcoords ` , ` pie ` , ` sankey ` , ` scatter ` , ` scattercarpet ` , ` scattergeo ` , ` scattergl ` , ` scattermapbox ` , ` scatterpolar ` , ` scatterpolargl ` , ` scatterternary ` , ` splom ` , ` sunburst ` , ` table ` , ` treemap ` , ` violin ` and ` waterfall ` .
@@ -452,7 +380,7 @@ The `strict` partial bundle contains trace modules `bar`, `barpolar`, `box`, `ca
452
380
| Tagged | https://cdn.plot.ly/plotly-strict-2.0.0-rc.2.js |
453
381
| Tagged minified | https://cdn.plot.ly/plotly-strict-2.0.0-rc.2.min.js |
454
382
455
- #### npm package (starting in ` v1.39.0 ` )
383
+ #### npm package
456
384
457
385
Install [ ` plotly.js-strict-dist ` ] ( https://www.npmjs.com/package/plotly.js-strict-dist ) with
458
386
```
@@ -466,26 +394,16 @@ import Plotly from 'plotly.js-strict-dist'
466
394
467
395
CommonJS usage:
468
396
``` js
469
- var Plotly = require (' plotly.js-strict-dist' );
397
+ var Plotly = require (' plotly.js-strict-dist' )
470
398
```
471
399
472
- #### dist min npm package (starting in ` v1.50.0 ` )
400
+ #### dist- min npm package
473
401
474
402
Install [ ` plotly.js-strict-dist-min ` ] ( https://www.npmjs.com/package/plotly.js-strict-dist-min ) with
475
403
```
476
404
npm install plotly.js-strict-dist-min
477
405
```
478
406
479
- #### Other plotly.js entry points
480
-
481
- | Flavor | Location |
482
- | ---------------| ----------|
483
- | dist bundle | ` dist/plotly-strict.js ` |
484
- | dist bundle (minified) | ` dist/plotly-strict.min.js ` |
485
- | ES6 module | ` import Plotly from 'plotly.js/lib/index-strict' ` |
486
- | CommonJS | ` require('plotly.js/lib/index-strict') ` |
487
-
488
-
489
407
----------------
490
408
491
409
_ This file is auto-generated by ` npm run stats ` . Please do not edit this file directly._
0 commit comments