plotly.js 1.58.3 → 1.58.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/README.md +25 -25
  3. package/dist/plot-schema.json +13 -13
  4. package/dist/plotly-basic.js +434 -326
  5. package/dist/plotly-basic.min.js +4 -4
  6. package/dist/plotly-cartesian.js +551 -443
  7. package/dist/plotly-cartesian.min.js +4 -4
  8. package/dist/plotly-finance.js +515 -407
  9. package/dist/plotly-finance.min.js +4 -4
  10. package/dist/plotly-geo-assets.js +2 -2
  11. package/dist/plotly-geo.js +438 -330
  12. package/dist/plotly-geo.min.js +4 -4
  13. package/dist/plotly-gl2d.js +616 -508
  14. package/dist/plotly-gl2d.min.js +10 -10
  15. package/dist/plotly-gl3d.js +340 -271
  16. package/dist/plotly-gl3d.min.js +3 -3
  17. package/dist/plotly-mapbox.js +448 -340
  18. package/dist/plotly-mapbox.min.js +4 -4
  19. package/dist/plotly-with-meta.js +805 -736
  20. package/dist/plotly.js +801 -732
  21. package/dist/plotly.min.js +3 -3
  22. package/package.json +1 -1
  23. package/src/components/colorscale/index.js +1 -1
  24. package/src/components/errorbars/attributes.js +1 -1
  25. package/src/components/fx/hover.js +1 -1
  26. package/src/components/sliders/draw.js +1 -1
  27. package/src/lib/index.js +2 -1
  28. package/src/lib/preserve_drawing_buffer.js +68 -0
  29. package/src/plot_api/plot_api.js +1 -1
  30. package/src/plots/gl3d/scene.js +16 -18
  31. package/src/traces/carpet/attributes.js +2 -2
  32. package/src/traces/carpet/create_i_derivative_evaluator.js +1 -1
  33. package/src/traces/carpet/plot.js +1 -1
  34. package/src/traces/carpet/set_convert.js +2 -2
  35. package/src/traces/carpet/smooth_fill_2d_array.js +1 -1
  36. package/src/traces/parcats/attributes.js +1 -1
  37. package/src/traces/scatter/plot.js +1 -1
  38. package/src/traces/scattercarpet/plot.js +1 -1
  39. package/src/version.js +1 -1
package/CHANGELOG.md CHANGED
@@ -9,6 +9,14 @@ To see all merged commits on the master branch that will be part of the next plo
9
9
 
10
10
  where X.Y.Z is the semver of most recent plotly.js release.
11
11
 
12
+ ## [1.58.4] -- 2020-12-21
13
+
14
+ ### Fixed
15
+ - Fix `preserveDrawingBuffer` WebGL config for displaying transparent gl3d scenes
16
+ on Apple devices running latest Safari versions (v13 and higher) [#5351]
17
+ - Fix spelling [#5349, #5356] with thanks to @jbampton for the contribution!
18
+
19
+
12
20
  ## [1.58.3] -- 2020-12-17
13
21
 
14
22
  ### Fixed
package/dist/README.md CHANGED
@@ -51,7 +51,7 @@ object. This property must be set before the plotly.js script tag, for example:
51
51
  Plotly.js defaults to US English (en-US) and includes British English (en) in the standard bundle.
52
52
  Many other localizations are available - here is an example using Swiss-German (de-CH),
53
53
  see the contents of this directory for the full list.
54
- They are also available on our CDN as https://cdn.plot.ly/plotly-locale-de-ch-latest.js OR https://cdn.plot.ly/plotly-locale-de-ch-1.58.3.js
54
+ They are also available on our CDN as https://cdn.plot.ly/plotly-locale-de-ch-latest.js OR https://cdn.plot.ly/plotly-locale-de-ch-1.58.4.js
55
55
  Note that the file names are all lowercase, even though the region is uppercase when you apply a locale.
56
56
 
57
57
  *After* the plotly.js script tag, add:
@@ -74,12 +74,12 @@ The main plotly.js bundle includes all the official (non-beta) trace modules.
74
74
 
75
75
  It be can imported as minified javascript
76
76
  - using dist file `dist/plotly.min.js`
77
- - using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.58.3.min.js
77
+ - using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.58.4.min.js
78
78
 
79
79
  or as raw javascript:
80
80
  - using the `plotly.js-dist` npm package (starting in `v1.39.0`)
81
81
  - using dist file `dist/plotly.js`
82
- - using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.58.3.js
82
+ - using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.58.4.js
83
83
  - using CommonJS with `require('plotly.js')`
84
84
 
85
85
  If you would like to have access to the attribute meta information (including attribute descriptions as on the [schema reference page](https://plotly.com/javascript/reference/)), use dist file `dist/plotly-with-meta.js`
@@ -88,7 +88,7 @@ The main plotly.js bundle weights in at:
88
88
 
89
89
  | plotly.js | plotly.min.js | plotly.min.js + gzip | plotly-with-meta.js |
90
90
  |-----------|---------------|----------------------|---------------------|
91
- | 7.2 MB | 3.3 MB | 1007.1 kB | 7.5 MB |
91
+ | 7.2 MB | 3.3 MB | 1007.2 kB | 7.5 MB |
92
92
 
93
93
  ## Partial bundles
94
94
 
@@ -114,7 +114,7 @@ The `basic` partial bundle contains trace modules `scatter`, `bar` and `pie`.
114
114
 
115
115
  | Raw size | Minified size | Minified + gzip size |
116
116
  |------|-----------------|------------------------|
117
- | 2.6 MB | 935.2 kB | 307.3 kB |
117
+ | 2.6 MB | 937.1 kB | 307.9 kB |
118
118
 
119
119
  #### CDN links
120
120
 
@@ -122,8 +122,8 @@ The `basic` partial bundle contains trace modules `scatter`, `bar` and `pie`.
122
122
  | ------ | --- |
123
123
  | Latest | https://cdn.plot.ly/plotly-basic-latest.js |
124
124
  | Latest minified | https://cdn.plot.ly/plotly-basic-latest.min.js |
125
- | Tagged | https://cdn.plot.ly/plotly-basic-1.58.3.js |
126
- | Tagged minified | https://cdn.plot.ly/plotly-basic-1.58.3.min.js |
125
+ | Tagged | https://cdn.plot.ly/plotly-basic-1.58.4.js |
126
+ | Tagged minified | https://cdn.plot.ly/plotly-basic-1.58.4.min.js |
127
127
 
128
128
  #### npm package (starting in `v1.39.0`)
129
129
 
@@ -167,7 +167,7 @@ The `cartesian` partial bundle contains trace modules `scatter`, `bar`, `box`, `
167
167
 
168
168
  | Raw size | Minified size | Minified + gzip size |
169
169
  |------|-----------------|------------------------|
170
- | 3 MB | 1.1 MB | 360.9 kB |
170
+ | 3 MB | 1.1 MB | 361.6 kB |
171
171
 
172
172
  #### CDN links
173
173
 
@@ -175,8 +175,8 @@ The `cartesian` partial bundle contains trace modules `scatter`, `bar`, `box`, `
175
175
  | ------ | --- |
176
176
  | Latest | https://cdn.plot.ly/plotly-cartesian-latest.js |
177
177
  | Latest minified | https://cdn.plot.ly/plotly-cartesian-latest.min.js |
178
- | Tagged | https://cdn.plot.ly/plotly-cartesian-1.58.3.js |
179
- | Tagged minified | https://cdn.plot.ly/plotly-cartesian-1.58.3.min.js |
178
+ | Tagged | https://cdn.plot.ly/plotly-cartesian-1.58.4.js |
179
+ | Tagged minified | https://cdn.plot.ly/plotly-cartesian-1.58.4.min.js |
180
180
 
181
181
  #### npm package (starting in `v1.39.0`)
182
182
 
@@ -220,7 +220,7 @@ The `geo` partial bundle contains trace modules `scatter`, `scattergeo` and `cho
220
220
 
221
221
  | Raw size | Minified size | Minified + gzip size |
222
222
  |------|-----------------|------------------------|
223
- | 2.7 MB | 961.8 kB | 316.6 kB |
223
+ | 2.7 MB | 963.7 kB | 317.3 kB |
224
224
 
225
225
  #### CDN links
226
226
 
@@ -228,8 +228,8 @@ The `geo` partial bundle contains trace modules `scatter`, `scattergeo` and `cho
228
228
  | ------ | --- |
229
229
  | Latest | https://cdn.plot.ly/plotly-geo-latest.js |
230
230
  | Latest minified | https://cdn.plot.ly/plotly-geo-latest.min.js |
231
- | Tagged | https://cdn.plot.ly/plotly-geo-1.58.3.js |
232
- | Tagged minified | https://cdn.plot.ly/plotly-geo-1.58.3.min.js |
231
+ | Tagged | https://cdn.plot.ly/plotly-geo-1.58.4.js |
232
+ | Tagged minified | https://cdn.plot.ly/plotly-geo-1.58.4.min.js |
233
233
 
234
234
  #### npm package (starting in `v1.39.0`)
235
235
 
@@ -273,7 +273,7 @@ The `gl3d` partial bundle contains trace modules `scatter`, `scatter3d`, `surfac
273
273
 
274
274
  | Raw size | Minified size | Minified + gzip size |
275
275
  |------|-----------------|------------------------|
276
- | 3.6 MB | 1.4 MB | 463 kB |
276
+ | 3.7 MB | 1.4 MB | 463.2 kB |
277
277
 
278
278
  #### CDN links
279
279
 
@@ -281,8 +281,8 @@ The `gl3d` partial bundle contains trace modules `scatter`, `scatter3d`, `surfac
281
281
  | ------ | --- |
282
282
  | Latest | https://cdn.plot.ly/plotly-gl3d-latest.js |
283
283
  | Latest minified | https://cdn.plot.ly/plotly-gl3d-latest.min.js |
284
- | Tagged | https://cdn.plot.ly/plotly-gl3d-1.58.3.js |
285
- | Tagged minified | https://cdn.plot.ly/plotly-gl3d-1.58.3.min.js |
284
+ | Tagged | https://cdn.plot.ly/plotly-gl3d-1.58.4.js |
285
+ | Tagged minified | https://cdn.plot.ly/plotly-gl3d-1.58.4.min.js |
286
286
 
287
287
  #### npm package (starting in `v1.39.0`)
288
288
 
@@ -326,7 +326,7 @@ The `gl2d` partial bundle contains trace modules `scatter`, `scattergl`, `splom`
326
326
 
327
327
  | Raw size | Minified size | Minified + gzip size |
328
328
  |------|-----------------|------------------------|
329
- | 3.7 MB | 1.5 MB | 488 kB |
329
+ | 3.7 MB | 1.5 MB | 488.6 kB |
330
330
 
331
331
  #### CDN links
332
332
 
@@ -334,8 +334,8 @@ The `gl2d` partial bundle contains trace modules `scatter`, `scattergl`, `splom`
334
334
  | ------ | --- |
335
335
  | Latest | https://cdn.plot.ly/plotly-gl2d-latest.js |
336
336
  | Latest minified | https://cdn.plot.ly/plotly-gl2d-latest.min.js |
337
- | Tagged | https://cdn.plot.ly/plotly-gl2d-1.58.3.js |
338
- | Tagged minified | https://cdn.plot.ly/plotly-gl2d-1.58.3.min.js |
337
+ | Tagged | https://cdn.plot.ly/plotly-gl2d-1.58.4.js |
338
+ | Tagged minified | https://cdn.plot.ly/plotly-gl2d-1.58.4.min.js |
339
339
 
340
340
  #### npm package (starting in `v1.39.0`)
341
341
 
@@ -379,7 +379,7 @@ The `mapbox` partial bundle contains trace modules `scatter`, `scattermapbox`, `
379
379
 
380
380
  | Raw size | Minified size | Minified + gzip size |
381
381
  |------|-----------------|------------------------|
382
- | 3.4 MB | 1.7 MB | 503.7 kB |
382
+ | 3.4 MB | 1.7 MB | 504.4 kB |
383
383
 
384
384
  #### CDN links
385
385
 
@@ -387,8 +387,8 @@ The `mapbox` partial bundle contains trace modules `scatter`, `scattermapbox`, `
387
387
  | ------ | --- |
388
388
  | Latest | https://cdn.plot.ly/plotly-mapbox-latest.js |
389
389
  | Latest minified | https://cdn.plot.ly/plotly-mapbox-latest.min.js |
390
- | Tagged | https://cdn.plot.ly/plotly-mapbox-1.58.3.js |
391
- | Tagged minified | https://cdn.plot.ly/plotly-mapbox-1.58.3.min.js |
390
+ | Tagged | https://cdn.plot.ly/plotly-mapbox-1.58.4.js |
391
+ | Tagged minified | https://cdn.plot.ly/plotly-mapbox-1.58.4.min.js |
392
392
 
393
393
  #### npm package (starting in `v1.39.0`)
394
394
 
@@ -432,7 +432,7 @@ The `finance` partial bundle contains trace modules `scatter`, `bar`, `histogram
432
432
 
433
433
  | Raw size | Minified size | Minified + gzip size |
434
434
  |------|-----------------|------------------------|
435
- | 2.8 MB | 1 MB | 333.1 kB |
435
+ | 2.8 MB | 1 MB | 333.8 kB |
436
436
 
437
437
  #### CDN links
438
438
 
@@ -440,8 +440,8 @@ The `finance` partial bundle contains trace modules `scatter`, `bar`, `histogram
440
440
  | ------ | --- |
441
441
  | Latest | https://cdn.plot.ly/plotly-finance-latest.js |
442
442
  | Latest minified | https://cdn.plot.ly/plotly-finance-latest.min.js |
443
- | Tagged | https://cdn.plot.ly/plotly-finance-1.58.3.js |
444
- | Tagged minified | https://cdn.plot.ly/plotly-finance-1.58.3.min.js |
443
+ | Tagged | https://cdn.plot.ly/plotly-finance-1.58.4.js |
444
+ | Tagged minified | https://cdn.plot.ly/plotly-finance-1.58.4.min.js |
445
445
 
446
446
  #### npm package (starting in `v1.39.0`)
447
447
 
@@ -2206,7 +2206,7 @@
2206
2206
  ],
2207
2207
  "role": "info",
2208
2208
  "editType": "calc",
2209
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
2209
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
2210
2210
  },
2211
2211
  "symmetric": {
2212
2212
  "valType": "boolean",
@@ -2322,7 +2322,7 @@
2322
2322
  ],
2323
2323
  "role": "info",
2324
2324
  "editType": "calc",
2325
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
2325
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
2326
2326
  },
2327
2327
  "symmetric": {
2328
2328
  "valType": "boolean",
@@ -4016,7 +4016,7 @@
4016
4016
  ],
4017
4017
  "role": "info",
4018
4018
  "editType": "calc",
4019
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
4019
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
4020
4020
  },
4021
4021
  "symmetric": {
4022
4022
  "valType": "boolean",
@@ -4132,7 +4132,7 @@
4132
4132
  ],
4133
4133
  "role": "info",
4134
4134
  "editType": "calc",
4135
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
4135
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
4136
4136
  },
4137
4137
  "symmetric": {
4138
4138
  "valType": "boolean",
@@ -8272,7 +8272,7 @@
8272
8272
  ],
8273
8273
  "role": "info",
8274
8274
  "editType": "calc",
8275
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
8275
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
8276
8276
  },
8277
8277
  "symmetric": {
8278
8278
  "valType": "boolean",
@@ -8388,7 +8388,7 @@
8388
8388
  ],
8389
8389
  "role": "info",
8390
8390
  "editType": "calc",
8391
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
8391
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
8392
8392
  },
8393
8393
  "symmetric": {
8394
8394
  "valType": "boolean",
@@ -24832,7 +24832,7 @@
24832
24832
  ],
24833
24833
  "role": "info",
24834
24834
  "editType": "calc",
24835
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
24835
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
24836
24836
  },
24837
24837
  "symmetric": {
24838
24838
  "valType": "boolean",
@@ -24948,7 +24948,7 @@
24948
24948
  ],
24949
24949
  "role": "info",
24950
24950
  "editType": "calc",
24951
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
24951
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
24952
24952
  },
24953
24953
  "symmetric": {
24954
24954
  "valType": "boolean",
@@ -25064,7 +25064,7 @@
25064
25064
  ],
25065
25065
  "role": "info",
25066
25066
  "editType": "calc",
25067
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
25067
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
25068
25068
  },
25069
25069
  "symmetric": {
25070
25070
  "valType": "boolean",
@@ -37755,7 +37755,7 @@
37755
37755
  ],
37756
37756
  "role": "info",
37757
37757
  "editType": "calc",
37758
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
37758
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
37759
37759
  },
37760
37760
  "symmetric": {
37761
37761
  "valType": "boolean",
@@ -37871,7 +37871,7 @@
37871
37871
  ],
37872
37872
  "role": "info",
37873
37873
  "editType": "calc",
37874
- "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the sqaure of the underlying data. If *data*, the bar lengths are set with data set `array`."
37874
+ "description": "Determines the rule used to generate the error bars. If *constant`, the bar lengths are of a constant value. Set this constant in `value`. If *percent*, the bar lengths correspond to a percentage of underlying data. Set this percentage in `value`. If *sqrt*, the bar lengths correspond to the square of the underlying data. If *data*, the bar lengths are set with data set `array`."
37875
37875
  },
37876
37876
  "symmetric": {
37877
37877
  "valType": "boolean",
@@ -49205,7 +49205,7 @@
49205
49205
  "x": {
49206
49206
  "valType": "data_array",
49207
49207
  "editType": "calc+clearAxisTypes",
49208
- "description": "A two dimensional array of x coordinates at each carpet point. If ommitted, the plot is a cheater plot and the xaxis is hidden by default.",
49208
+ "description": "A two dimensional array of x coordinates at each carpet point. If omitted, the plot is a cheater plot and the xaxis is hidden by default.",
49209
49209
  "role": "data"
49210
49210
  },
49211
49211
  "y": {
@@ -49259,7 +49259,7 @@
49259
49259
  "role": "info",
49260
49260
  "dflt": 1,
49261
49261
  "editType": "calc",
49262
- "description": "The shift applied to each successive row of data in creating a cheater plot. Only used if `x` is been ommitted."
49262
+ "description": "The shift applied to each successive row of data in creating a cheater plot. Only used if `x` is been omitted."
49263
49263
  },
49264
49264
  "aaxis": {
49265
49265
  "color": {