plotly.js 2.8.2 → 2.10.0

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 (88) hide show
  1. package/.circleci/config.yml +39 -1
  2. package/.circleci/env_image.sh +1 -1
  3. package/.circleci/test.sh +14 -1
  4. package/CHANGELOG.md +30 -1
  5. package/CONTRIBUTING.md +1 -1
  6. package/README.md +12 -4
  7. package/dist/README.md +26 -26
  8. package/dist/plot-schema.json +413 -0
  9. package/dist/plotly-basic.js +253 -96
  10. package/dist/plotly-basic.min.js +5 -5
  11. package/dist/plotly-cartesian.js +263 -97
  12. package/dist/plotly-cartesian.min.js +5 -5
  13. package/dist/plotly-finance.js +254 -96
  14. package/dist/plotly-finance.min.js +4 -4
  15. package/dist/plotly-geo-assets.js +3 -3
  16. package/dist/plotly-geo.js +248 -92
  17. package/dist/plotly-geo.min.js +4 -4
  18. package/dist/plotly-gl2d.js +248 -92
  19. package/dist/plotly-gl2d.min.js +7 -7
  20. package/dist/plotly-gl3d.js +249 -92
  21. package/dist/plotly-gl3d.min.js +3 -3
  22. package/dist/plotly-locale-cs.js +1 -1
  23. package/dist/plotly-locale-cy.js +1 -1
  24. package/dist/plotly-locale-de.js +1 -1
  25. package/dist/plotly-locale-es.js +1 -1
  26. package/dist/plotly-locale-fi.js +1 -1
  27. package/dist/plotly-locale-fr.js +1 -1
  28. package/dist/plotly-locale-it.js +1 -1
  29. package/dist/plotly-locale-ja.js +1 -1
  30. package/dist/plotly-locale-ko.js +1 -1
  31. package/dist/plotly-locale-pt-br.js +1 -1
  32. package/dist/plotly-locale-pt-pt.js +1 -1
  33. package/dist/plotly-locale-ru.js +1 -1
  34. package/dist/plotly-locale-sv.js +1 -1
  35. package/dist/plotly-locale-sw.js +1 -1
  36. package/dist/plotly-locale-uk.js +1 -1
  37. package/dist/plotly-locale-zh-cn.js +1 -1
  38. package/dist/plotly-mapbox.js +248 -92
  39. package/dist/plotly-mapbox.min.js +3 -3
  40. package/dist/plotly-strict.js +267 -97
  41. package/dist/plotly-strict.min.js +7 -7
  42. package/dist/plotly-with-meta.js +280 -97
  43. package/dist/plotly.js +268 -97
  44. package/dist/plotly.min.js +11 -11
  45. package/dist/translation-keys.txt +1 -1
  46. package/lib/locales/cs.js +1 -1
  47. package/lib/locales/cy.js +1 -1
  48. package/lib/locales/de.js +1 -1
  49. package/lib/locales/es.js +1 -1
  50. package/lib/locales/fi.js +1 -1
  51. package/lib/locales/fr.js +1 -1
  52. package/lib/locales/it.js +1 -1
  53. package/lib/locales/ja.js +1 -1
  54. package/lib/locales/ko.js +1 -1
  55. package/lib/locales/pt-br.js +1 -1
  56. package/lib/locales/pt-pt.js +1 -1
  57. package/lib/locales/ru.js +1 -1
  58. package/lib/locales/sv.js +1 -1
  59. package/lib/locales/sw.js +1 -1
  60. package/lib/locales/uk.js +1 -1
  61. package/lib/locales/zh-cn.js +1 -1
  62. package/package.json +15 -12
  63. package/src/components/colorbar/attributes.js +1 -0
  64. package/src/components/colorbar/draw.js +1 -0
  65. package/src/components/drawing/index.js +28 -24
  66. package/src/components/legend/draw.js +2 -1
  67. package/src/components/legend/style.js +10 -6
  68. package/src/components/modebar/modebar.js +7 -1
  69. package/src/lib/svg_text_utils.js +106 -21
  70. package/src/plot_api/plot_config.js +9 -0
  71. package/src/plots/cartesian/axes.js +47 -5
  72. package/src/plots/cartesian/layout_attributes.js +14 -0
  73. package/src/plots/cartesian/tick_label_defaults.js +8 -0
  74. package/src/plots/gl3d/layout/axis_defaults.js +1 -0
  75. package/src/plots/polar/layout_attributes.js +1 -0
  76. package/src/plots/smith/layout_defaults.js +1 -0
  77. package/src/plots/ternary/layout_attributes.js +1 -0
  78. package/src/snapshot/tosvg.js +14 -25
  79. package/src/traces/bar/plot.js +5 -4
  80. package/src/traces/carpet/ab_defaults.js +1 -0
  81. package/src/traces/indicator/attributes.js +1 -0
  82. package/src/traces/scatter/attributes.js +2 -0
  83. package/src/traces/scatter/defaults.js +2 -0
  84. package/src/traces/scatter/plot.js +4 -4
  85. package/src/traces/scatter/style.js +1 -1
  86. package/src/version.js +1 -1
  87. package/tasks/noci_test.sh +1 -1
  88. package/.vscode/launch.json +0 -0
@@ -365,6 +365,11 @@
365
365
  "noBlank": true,
366
366
  "valType": "string"
367
367
  },
368
+ "typesetMath": {
369
+ "description": "Determines whether math should be typeset or not, when MathJax (either v2 or v3) is present on the page.",
370
+ "dflt": true,
371
+ "valType": "boolean"
372
+ },
368
373
  "watermark": {
369
374
  "description": "watermark the images with the company's logo",
370
375
  "dflt": false,
@@ -1412,6 +1417,13 @@
1412
1417
  "inside bottom"
1413
1418
  ]
1414
1419
  },
1420
+ "ticklabelstep": {
1421
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
1422
+ "dflt": 1,
1423
+ "editType": "colorbars",
1424
+ "min": 1,
1425
+ "valType": "integer"
1426
+ },
1415
1427
  "ticklen": {
1416
1428
  "description": "Sets the tick length (in px).",
1417
1429
  "dflt": 5,
@@ -3790,6 +3802,13 @@
3790
3802
  },
3791
3803
  "role": "object"
3792
3804
  },
3805
+ "ticklabelstep": {
3806
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
3807
+ "dflt": 1,
3808
+ "editType": "plot",
3809
+ "min": 1,
3810
+ "valType": "integer"
3811
+ },
3793
3812
  "ticklen": {
3794
3813
  "description": "Sets the tick length (in px).",
3795
3814
  "dflt": 5,
@@ -4368,6 +4387,13 @@
4368
4387
  },
4369
4388
  "role": "object"
4370
4389
  },
4390
+ "ticklabelstep": {
4391
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
4392
+ "dflt": 1,
4393
+ "editType": "plot",
4394
+ "min": 1,
4395
+ "valType": "integer"
4396
+ },
4371
4397
  "ticklen": {
4372
4398
  "description": "Sets the tick length (in px).",
4373
4399
  "dflt": 5,
@@ -8076,6 +8102,13 @@
8076
8102
  },
8077
8103
  "role": "object"
8078
8104
  },
8105
+ "ticklabelstep": {
8106
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
8107
+ "dflt": 1,
8108
+ "editType": "plot",
8109
+ "min": 1,
8110
+ "valType": "integer"
8111
+ },
8079
8112
  "ticklen": {
8080
8113
  "description": "Sets the tick length (in px).",
8081
8114
  "dflt": 5,
@@ -8453,6 +8486,13 @@
8453
8486
  },
8454
8487
  "role": "object"
8455
8488
  },
8489
+ "ticklabelstep": {
8490
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
8491
+ "dflt": 1,
8492
+ "editType": "plot",
8493
+ "min": 1,
8494
+ "valType": "integer"
8495
+ },
8456
8496
  "ticklen": {
8457
8497
  "description": "Sets the tick length (in px).",
8458
8498
  "dflt": 5,
@@ -8836,6 +8876,13 @@
8836
8876
  },
8837
8877
  "role": "object"
8838
8878
  },
8879
+ "ticklabelstep": {
8880
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
8881
+ "dflt": 1,
8882
+ "editType": "plot",
8883
+ "min": 1,
8884
+ "valType": "integer"
8885
+ },
8839
8886
  "ticklen": {
8840
8887
  "description": "Sets the tick length (in px).",
8841
8888
  "dflt": 5,
@@ -10451,6 +10498,13 @@
10451
10498
  "inside bottom"
10452
10499
  ]
10453
10500
  },
10501
+ "ticklabelstep": {
10502
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
10503
+ "dflt": 1,
10504
+ "editType": "ticks",
10505
+ "min": 1,
10506
+ "valType": "integer"
10507
+ },
10454
10508
  "ticklen": {
10455
10509
  "description": "Sets the tick length (in px).",
10456
10510
  "dflt": 5,
@@ -11308,6 +11362,13 @@
11308
11362
  "inside bottom"
11309
11363
  ]
11310
11364
  },
11365
+ "ticklabelstep": {
11366
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
11367
+ "dflt": 1,
11368
+ "editType": "ticks",
11369
+ "min": 1,
11370
+ "valType": "integer"
11371
+ },
11311
11372
  "ticklen": {
11312
11373
  "description": "Sets the tick length (in px).",
11313
11374
  "dflt": 5,
@@ -12359,6 +12420,13 @@
12359
12420
  "inside bottom"
12360
12421
  ]
12361
12422
  },
12423
+ "ticklabelstep": {
12424
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
12425
+ "dflt": 1,
12426
+ "editType": "colorbars",
12427
+ "min": 1,
12428
+ "valType": "integer"
12429
+ },
12362
12430
  "ticklen": {
12363
12431
  "description": "Sets the tick length (in px).",
12364
12432
  "dflt": 5,
@@ -13867,6 +13935,13 @@
13867
13935
  "inside bottom"
13868
13936
  ]
13869
13937
  },
13938
+ "ticklabelstep": {
13939
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
13940
+ "dflt": 1,
13941
+ "editType": "colorbars",
13942
+ "min": 1,
13943
+ "valType": "integer"
13944
+ },
13870
13945
  "ticklen": {
13871
13946
  "description": "Sets the tick length (in px).",
13872
13947
  "dflt": 5,
@@ -17991,6 +18066,13 @@
17991
18066
  "inside bottom"
17992
18067
  ]
17993
18068
  },
18069
+ "ticklabelstep": {
18070
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
18071
+ "dflt": 1,
18072
+ "editType": "colorbars",
18073
+ "min": 1,
18074
+ "valType": "integer"
18075
+ },
17994
18076
  "ticklen": {
17995
18077
  "description": "Sets the tick length (in px).",
17996
18078
  "dflt": 5,
@@ -18977,6 +19059,13 @@
18977
19059
  "inside bottom"
18978
19060
  ]
18979
19061
  },
19062
+ "ticklabelstep": {
19063
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
19064
+ "dflt": 1,
19065
+ "editType": "colorbars",
19066
+ "min": 1,
19067
+ "valType": "integer"
19068
+ },
18980
19069
  "ticklen": {
18981
19070
  "description": "Sets the tick length (in px).",
18982
19071
  "dflt": 5,
@@ -19992,6 +20081,13 @@
19992
20081
  "inside bottom"
19993
20082
  ]
19994
20083
  },
20084
+ "ticklabelstep": {
20085
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
20086
+ "dflt": 1,
20087
+ "editType": "colorbars",
20088
+ "min": 1,
20089
+ "valType": "integer"
20090
+ },
19995
20091
  "ticklen": {
19996
20092
  "description": "Sets the tick length (in px).",
19997
20093
  "dflt": 5,
@@ -21025,6 +21121,13 @@
21025
21121
  "inside bottom"
21026
21122
  ]
21027
21123
  },
21124
+ "ticklabelstep": {
21125
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
21126
+ "dflt": 1,
21127
+ "editType": "colorbars",
21128
+ "min": 1,
21129
+ "valType": "integer"
21130
+ },
21028
21131
  "ticklen": {
21029
21132
  "description": "Sets the tick length (in px).",
21030
21133
  "dflt": 5,
@@ -22399,6 +22502,13 @@
22399
22502
  "inside bottom"
22400
22503
  ]
22401
22504
  },
22505
+ "ticklabelstep": {
22506
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
22507
+ "dflt": 1,
22508
+ "editType": "colorbars",
22509
+ "min": 1,
22510
+ "valType": "integer"
22511
+ },
22402
22512
  "ticklen": {
22403
22513
  "description": "Sets the tick length (in px).",
22404
22514
  "dflt": 5,
@@ -23344,6 +23454,13 @@
23344
23454
  "inside bottom"
23345
23455
  ]
23346
23456
  },
23457
+ "ticklabelstep": {
23458
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
23459
+ "dflt": 1,
23460
+ "editType": "colorbars",
23461
+ "min": 1,
23462
+ "valType": "integer"
23463
+ },
23347
23464
  "ticklen": {
23348
23465
  "description": "Sets the tick length (in px).",
23349
23466
  "dflt": 5,
@@ -24632,6 +24749,13 @@
24632
24749
  "inside bottom"
24633
24750
  ]
24634
24751
  },
24752
+ "ticklabelstep": {
24753
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
24754
+ "dflt": 1,
24755
+ "editType": "colorbars",
24756
+ "min": 1,
24757
+ "valType": "integer"
24758
+ },
24635
24759
  "ticklen": {
24636
24760
  "description": "Sets the tick length (in px).",
24637
24761
  "dflt": 5,
@@ -26335,6 +26459,13 @@
26335
26459
  "inside bottom"
26336
26460
  ]
26337
26461
  },
26462
+ "ticklabelstep": {
26463
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
26464
+ "dflt": 1,
26465
+ "editType": "colorbars",
26466
+ "min": 1,
26467
+ "valType": "integer"
26468
+ },
26338
26469
  "ticklen": {
26339
26470
  "description": "Sets the tick length (in px).",
26340
26471
  "dflt": 5,
@@ -27492,6 +27623,13 @@
27492
27623
  "inside bottom"
27493
27624
  ]
27494
27625
  },
27626
+ "ticklabelstep": {
27627
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
27628
+ "dflt": 1,
27629
+ "editType": "calc",
27630
+ "min": 1,
27631
+ "valType": "integer"
27632
+ },
27495
27633
  "ticklen": {
27496
27634
  "description": "Sets the tick length (in px).",
27497
27635
  "dflt": 5,
@@ -29014,6 +29152,13 @@
29014
29152
  "inside bottom"
29015
29153
  ]
29016
29154
  },
29155
+ "ticklabelstep": {
29156
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
29157
+ "dflt": 1,
29158
+ "editType": "colorbars",
29159
+ "min": 1,
29160
+ "valType": "integer"
29161
+ },
29017
29162
  "ticklen": {
29018
29163
  "description": "Sets the tick length (in px).",
29019
29164
  "dflt": 5,
@@ -30191,6 +30336,13 @@
30191
30336
  "inside bottom"
30192
30337
  ]
30193
30338
  },
30339
+ "ticklabelstep": {
30340
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
30341
+ "dflt": 1,
30342
+ "editType": "colorbars",
30343
+ "min": 1,
30344
+ "valType": "integer"
30345
+ },
30194
30346
  "ticklen": {
30195
30347
  "description": "Sets the tick length (in px).",
30196
30348
  "dflt": 5,
@@ -31320,6 +31472,13 @@
31320
31472
  "inside bottom"
31321
31473
  ]
31322
31474
  },
31475
+ "ticklabelstep": {
31476
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
31477
+ "dflt": 1,
31478
+ "editType": "colorbars",
31479
+ "min": 1,
31480
+ "valType": "integer"
31481
+ },
31323
31482
  "ticklen": {
31324
31483
  "description": "Sets the tick length (in px).",
31325
31484
  "dflt": 5,
@@ -32956,6 +33115,13 @@
32956
33115
  "inside bottom"
32957
33116
  ]
32958
33117
  },
33118
+ "ticklabelstep": {
33119
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
33120
+ "dflt": 1,
33121
+ "editType": "colorbars",
33122
+ "min": 1,
33123
+ "valType": "integer"
33124
+ },
32959
33125
  "ticklen": {
32960
33126
  "description": "Sets the tick length (in px).",
32961
33127
  "dflt": 5,
@@ -34333,6 +34499,13 @@
34333
34499
  },
34334
34500
  "role": "object"
34335
34501
  },
34502
+ "ticklabelstep": {
34503
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
34504
+ "dflt": 1,
34505
+ "editType": "plot",
34506
+ "min": 1,
34507
+ "valType": "integer"
34508
+ },
34336
34509
  "ticklen": {
34337
34510
  "description": "Sets the tick length (in px).",
34338
34511
  "dflt": 5,
@@ -35231,6 +35404,13 @@
35231
35404
  "inside bottom"
35232
35405
  ]
35233
35406
  },
35407
+ "ticklabelstep": {
35408
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
35409
+ "dflt": 1,
35410
+ "editType": "calc",
35411
+ "min": 1,
35412
+ "valType": "integer"
35413
+ },
35234
35414
  "ticklen": {
35235
35415
  "description": "Sets the tick length (in px).",
35236
35416
  "dflt": 5,
@@ -36440,6 +36620,13 @@
36440
36620
  "inside bottom"
36441
36621
  ]
36442
36622
  },
36623
+ "ticklabelstep": {
36624
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
36625
+ "dflt": 1,
36626
+ "editType": "colorbars",
36627
+ "min": 1,
36628
+ "valType": "integer"
36629
+ },
36443
36630
  "ticklen": {
36444
36631
  "description": "Sets the tick length (in px).",
36445
36632
  "dflt": 5,
@@ -38403,6 +38590,13 @@
38403
38590
  "inside bottom"
38404
38591
  ]
38405
38592
  },
38593
+ "ticklabelstep": {
38594
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
38595
+ "dflt": 1,
38596
+ "editType": "colorbars",
38597
+ "min": 1,
38598
+ "valType": "integer"
38599
+ },
38406
38600
  "ticklen": {
38407
38601
  "description": "Sets the tick length (in px).",
38408
38602
  "dflt": 5,
@@ -39353,6 +39547,13 @@
39353
39547
  "inside bottom"
39354
39548
  ]
39355
39549
  },
39550
+ "ticklabelstep": {
39551
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
39552
+ "dflt": 1,
39553
+ "editType": "colorbars",
39554
+ "min": 1,
39555
+ "valType": "integer"
39556
+ },
39356
39557
  "ticklen": {
39357
39558
  "description": "Sets the tick length (in px).",
39358
39559
  "dflt": 5,
@@ -42073,6 +42274,99 @@
42073
42274
  "editType": "style",
42074
42275
  "valType": "color"
42075
42276
  },
42277
+ "fillpattern": {
42278
+ "bgcolor": {
42279
+ "arrayOk": true,
42280
+ "description": "When there is no colorscale sets the color of background pattern fill. Defaults to a `marker.color` background when `fillmode` is *overlay*. Otherwise, defaults to a transparent background.",
42281
+ "editType": "style",
42282
+ "valType": "color"
42283
+ },
42284
+ "bgcolorsrc": {
42285
+ "description": "Sets the source reference on Chart Studio Cloud for `bgcolor`.",
42286
+ "editType": "none",
42287
+ "valType": "string"
42288
+ },
42289
+ "description": "Sets the pattern within the marker.",
42290
+ "editType": "style",
42291
+ "fgcolor": {
42292
+ "arrayOk": true,
42293
+ "description": "When there is no colorscale sets the color of foreground pattern fill. Defaults to a `marker.color` background when `fillmode` is *replace*. Otherwise, defaults to dark grey or white to increase contrast with the `bgcolor`.",
42294
+ "editType": "style",
42295
+ "valType": "color"
42296
+ },
42297
+ "fgcolorsrc": {
42298
+ "description": "Sets the source reference on Chart Studio Cloud for `fgcolor`.",
42299
+ "editType": "none",
42300
+ "valType": "string"
42301
+ },
42302
+ "fgopacity": {
42303
+ "description": "Sets the opacity of the foreground pattern fill. Defaults to a 0.5 when `fillmode` is *overlay*. Otherwise, defaults to 1.",
42304
+ "editType": "style",
42305
+ "max": 1,
42306
+ "min": 0,
42307
+ "valType": "number"
42308
+ },
42309
+ "fillmode": {
42310
+ "description": "Determines whether `marker.color` should be used as a default to `bgcolor` or a `fgcolor`.",
42311
+ "dflt": "replace",
42312
+ "editType": "style",
42313
+ "valType": "enumerated",
42314
+ "values": [
42315
+ "replace",
42316
+ "overlay"
42317
+ ]
42318
+ },
42319
+ "role": "object",
42320
+ "shape": {
42321
+ "arrayOk": true,
42322
+ "description": "Sets the shape of the pattern fill. By default, no pattern is used for filling the area.",
42323
+ "dflt": "",
42324
+ "editType": "style",
42325
+ "valType": "enumerated",
42326
+ "values": [
42327
+ "",
42328
+ "/",
42329
+ "\\",
42330
+ "x",
42331
+ "-",
42332
+ "|",
42333
+ "+",
42334
+ "."
42335
+ ]
42336
+ },
42337
+ "shapesrc": {
42338
+ "description": "Sets the source reference on Chart Studio Cloud for `shape`.",
42339
+ "editType": "none",
42340
+ "valType": "string"
42341
+ },
42342
+ "size": {
42343
+ "arrayOk": true,
42344
+ "description": "Sets the size of unit squares of the pattern fill in pixels, which corresponds to the interval of repetition of the pattern.",
42345
+ "dflt": 8,
42346
+ "editType": "style",
42347
+ "min": 0,
42348
+ "valType": "number"
42349
+ },
42350
+ "sizesrc": {
42351
+ "description": "Sets the source reference on Chart Studio Cloud for `size`.",
42352
+ "editType": "none",
42353
+ "valType": "string"
42354
+ },
42355
+ "solidity": {
42356
+ "arrayOk": true,
42357
+ "description": "Sets the solidity of the pattern fill. Solidity is roughly the fraction of the area filled by the pattern. Solidity of 0 shows only the background color without pattern and solidty of 1 shows only the foreground color without pattern.",
42358
+ "dflt": 0.3,
42359
+ "editType": "style",
42360
+ "max": 1,
42361
+ "min": 0,
42362
+ "valType": "number"
42363
+ },
42364
+ "soliditysrc": {
42365
+ "description": "Sets the source reference on Chart Studio Cloud for `solidity`.",
42366
+ "editType": "none",
42367
+ "valType": "string"
42368
+ }
42369
+ },
42076
42370
  "groupnorm": {
42077
42371
  "description": "Only relevant when `stackgroup` is used, and only the first `groupnorm` found in the `stackgroup` will be used - including if `visible` is *legendonly* but not if it is `false`. Sets the normalization for the sum of this `stackgroup`. With *fraction*, the value of each trace at each location is divided by the sum of all trace values at that location. *percent* is the same but multiplied by 100 to show percentages. If there are multiple subplots, or multiple `stackgroup`s on one subplot, each will be normalized within its own set.",
42078
42372
  "dflt": "",
@@ -42726,6 +43020,13 @@
42726
43020
  "inside bottom"
42727
43021
  ]
42728
43022
  },
43023
+ "ticklabelstep": {
43024
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
43025
+ "dflt": 1,
43026
+ "editType": "colorbars",
43027
+ "min": 1,
43028
+ "valType": "integer"
43029
+ },
42729
43030
  "ticklen": {
42730
43031
  "description": "Sets the tick length (in px).",
42731
43032
  "dflt": 5,
@@ -44915,6 +45216,13 @@
44915
45216
  "inside bottom"
44916
45217
  ]
44917
45218
  },
45219
+ "ticklabelstep": {
45220
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
45221
+ "dflt": 1,
45222
+ "editType": "calc",
45223
+ "min": 1,
45224
+ "valType": "integer"
45225
+ },
44918
45226
  "ticklen": {
44919
45227
  "description": "Sets the tick length (in px).",
44920
45228
  "dflt": 5,
@@ -45497,6 +45805,13 @@
45497
45805
  "inside bottom"
45498
45806
  ]
45499
45807
  },
45808
+ "ticklabelstep": {
45809
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
45810
+ "dflt": 1,
45811
+ "editType": "calc",
45812
+ "min": 1,
45813
+ "valType": "integer"
45814
+ },
45500
45815
  "ticklen": {
45501
45816
  "description": "Sets the tick length (in px).",
45502
45817
  "dflt": 5,
@@ -46932,6 +47247,13 @@
46932
47247
  "inside bottom"
46933
47248
  ]
46934
47249
  },
47250
+ "ticklabelstep": {
47251
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
47252
+ "dflt": 1,
47253
+ "editType": "colorbars",
47254
+ "min": 1,
47255
+ "valType": "integer"
47256
+ },
46935
47257
  "ticklen": {
46936
47258
  "description": "Sets the tick length (in px).",
46937
47259
  "dflt": 5,
@@ -48760,6 +49082,13 @@
48760
49082
  "inside bottom"
48761
49083
  ]
48762
49084
  },
49085
+ "ticklabelstep": {
49086
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
49087
+ "dflt": 1,
49088
+ "editType": "calc",
49089
+ "min": 1,
49090
+ "valType": "integer"
49091
+ },
48763
49092
  "ticklen": {
48764
49093
  "description": "Sets the tick length (in px).",
48765
49094
  "dflt": 5,
@@ -50734,6 +51063,13 @@
50734
51063
  "inside bottom"
50735
51064
  ]
50736
51065
  },
51066
+ "ticklabelstep": {
51067
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
51068
+ "dflt": 1,
51069
+ "editType": "calc",
51070
+ "min": 1,
51071
+ "valType": "integer"
51072
+ },
50737
51073
  "ticklen": {
50738
51074
  "description": "Sets the tick length (in px).",
50739
51075
  "dflt": 5,
@@ -52627,6 +52963,13 @@
52627
52963
  "inside bottom"
52628
52964
  ]
52629
52965
  },
52966
+ "ticklabelstep": {
52967
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
52968
+ "dflt": 1,
52969
+ "editType": "calc",
52970
+ "min": 1,
52971
+ "valType": "integer"
52972
+ },
52630
52973
  "ticklen": {
52631
52974
  "description": "Sets the tick length (in px).",
52632
52975
  "dflt": 5,
@@ -53789,6 +54132,13 @@
53789
54132
  "inside bottom"
53790
54133
  ]
53791
54134
  },
54135
+ "ticklabelstep": {
54136
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
54137
+ "dflt": 1,
54138
+ "editType": "colorbars",
54139
+ "min": 1,
54140
+ "valType": "integer"
54141
+ },
53792
54142
  "ticklen": {
53793
54143
  "description": "Sets the tick length (in px).",
53794
54144
  "dflt": 5,
@@ -55620,6 +55970,13 @@
55620
55970
  "inside bottom"
55621
55971
  ]
55622
55972
  },
55973
+ "ticklabelstep": {
55974
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
55975
+ "dflt": 1,
55976
+ "editType": "calc",
55977
+ "min": 1,
55978
+ "valType": "integer"
55979
+ },
55623
55980
  "ticklen": {
55624
55981
  "description": "Sets the tick length (in px).",
55625
55982
  "dflt": 5,
@@ -57428,6 +57785,13 @@
57428
57785
  "inside bottom"
57429
57786
  ]
57430
57787
  },
57788
+ "ticklabelstep": {
57789
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
57790
+ "dflt": 1,
57791
+ "editType": "colorbars",
57792
+ "min": 1,
57793
+ "valType": "integer"
57794
+ },
57431
57795
  "ticklen": {
57432
57796
  "description": "Sets the tick length (in px).",
57433
57797
  "dflt": 5,
@@ -59262,6 +59626,13 @@
59262
59626
  "inside bottom"
59263
59627
  ]
59264
59628
  },
59629
+ "ticklabelstep": {
59630
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
59631
+ "dflt": 1,
59632
+ "editType": "colorbars",
59633
+ "min": 1,
59634
+ "valType": "integer"
59635
+ },
59265
59636
  "ticklen": {
59266
59637
  "description": "Sets the tick length (in px).",
59267
59638
  "dflt": 5,
@@ -61050,6 +61421,13 @@
61050
61421
  "inside bottom"
61051
61422
  ]
61052
61423
  },
61424
+ "ticklabelstep": {
61425
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
61426
+ "dflt": 1,
61427
+ "editType": "colorbars",
61428
+ "min": 1,
61429
+ "valType": "integer"
61430
+ },
61053
61431
  "ticklen": {
61054
61432
  "description": "Sets the tick length (in px).",
61055
61433
  "dflt": 5,
@@ -62442,6 +62820,13 @@
62442
62820
  "inside bottom"
62443
62821
  ]
62444
62822
  },
62823
+ "ticklabelstep": {
62824
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
62825
+ "dflt": 1,
62826
+ "editType": "colorbars",
62827
+ "min": 1,
62828
+ "valType": "integer"
62829
+ },
62445
62830
  "ticklen": {
62446
62831
  "description": "Sets the tick length (in px).",
62447
62832
  "dflt": 5,
@@ -63888,6 +64273,13 @@
63888
64273
  "inside bottom"
63889
64274
  ]
63890
64275
  },
64276
+ "ticklabelstep": {
64277
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
64278
+ "dflt": 1,
64279
+ "editType": "colorbars",
64280
+ "min": 1,
64281
+ "valType": "integer"
64282
+ },
63891
64283
  "ticklen": {
63892
64284
  "description": "Sets the tick length (in px).",
63893
64285
  "dflt": 5,
@@ -64754,6 +65146,13 @@
64754
65146
  "inside bottom"
64755
65147
  ]
64756
65148
  },
65149
+ "ticklabelstep": {
65150
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
65151
+ "dflt": 1,
65152
+ "editType": "calc",
65153
+ "min": 1,
65154
+ "valType": "integer"
65155
+ },
64757
65156
  "ticklen": {
64758
65157
  "description": "Sets the tick length (in px).",
64759
65158
  "dflt": 5,
@@ -67089,6 +67488,13 @@
67089
67488
  "inside bottom"
67090
67489
  ]
67091
67490
  },
67491
+ "ticklabelstep": {
67492
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
67493
+ "dflt": 1,
67494
+ "editType": "colorbars",
67495
+ "min": 1,
67496
+ "valType": "integer"
67497
+ },
67092
67498
  "ticklen": {
67093
67499
  "description": "Sets the tick length (in px).",
67094
67500
  "dflt": 5,
@@ -69378,6 +69784,13 @@
69378
69784
  "inside bottom"
69379
69785
  ]
69380
69786
  },
69787
+ "ticklabelstep": {
69788
+ "description": "Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` *log* or *multicategory*, or when `tickmode` is *array*.",
69789
+ "dflt": 1,
69790
+ "editType": "calc",
69791
+ "min": 1,
69792
+ "valType": "integer"
69793
+ },
69381
69794
  "ticklen": {
69382
69795
  "description": "Sets the tick length (in px).",
69383
69796
  "dflt": 5,