plotly.js 2.8.3 → 2.9.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 (74) hide show
  1. package/.circleci/env_image.sh +1 -1
  2. package/CHANGELOG.md +13 -0
  3. package/README.md +3 -3
  4. package/dist/README.md +26 -26
  5. package/dist/plot-schema.json +315 -0
  6. package/dist/plotly-basic.js +76 -11
  7. package/dist/plotly-basic.min.js +5 -5
  8. package/dist/plotly-cartesian.js +86 -12
  9. package/dist/plotly-cartesian.min.js +3 -3
  10. package/dist/plotly-finance.js +77 -11
  11. package/dist/plotly-finance.min.js +3 -3
  12. package/dist/plotly-geo-assets.js +3 -3
  13. package/dist/plotly-geo.js +76 -11
  14. package/dist/plotly-geo.min.js +3 -3
  15. package/dist/plotly-gl2d.js +76 -11
  16. package/dist/plotly-gl2d.min.js +3 -3
  17. package/dist/plotly-gl3d.js +77 -11
  18. package/dist/plotly-gl3d.min.js +9 -9
  19. package/dist/plotly-locale-cs.js +1 -1
  20. package/dist/plotly-locale-cy.js +1 -1
  21. package/dist/plotly-locale-de.js +1 -1
  22. package/dist/plotly-locale-es.js +1 -1
  23. package/dist/plotly-locale-fi.js +1 -1
  24. package/dist/plotly-locale-fr.js +1 -1
  25. package/dist/plotly-locale-it.js +1 -1
  26. package/dist/plotly-locale-ja.js +1 -1
  27. package/dist/plotly-locale-ko.js +1 -1
  28. package/dist/plotly-locale-pt-br.js +1 -1
  29. package/dist/plotly-locale-pt-pt.js +1 -1
  30. package/dist/plotly-locale-ru.js +1 -1
  31. package/dist/plotly-locale-sv.js +1 -1
  32. package/dist/plotly-locale-sw.js +1 -1
  33. package/dist/plotly-locale-uk.js +1 -1
  34. package/dist/plotly-locale-zh-cn.js +1 -1
  35. package/dist/plotly-mapbox.js +76 -11
  36. package/dist/plotly-mapbox.min.js +3 -3
  37. package/dist/plotly-strict.js +90 -12
  38. package/dist/plotly-strict.min.js +3 -3
  39. package/dist/plotly-with-meta.js +99 -12
  40. package/dist/plotly.js +91 -12
  41. package/dist/plotly.min.js +11 -11
  42. package/dist/translation-keys.txt +1 -1
  43. package/lib/locales/cs.js +1 -1
  44. package/lib/locales/cy.js +1 -1
  45. package/lib/locales/de.js +1 -1
  46. package/lib/locales/es.js +1 -1
  47. package/lib/locales/fi.js +1 -1
  48. package/lib/locales/fr.js +1 -1
  49. package/lib/locales/it.js +1 -1
  50. package/lib/locales/ja.js +1 -1
  51. package/lib/locales/ko.js +1 -1
  52. package/lib/locales/pt-br.js +1 -1
  53. package/lib/locales/pt-pt.js +1 -1
  54. package/lib/locales/ru.js +1 -1
  55. package/lib/locales/sv.js +1 -1
  56. package/lib/locales/sw.js +1 -1
  57. package/lib/locales/uk.js +1 -1
  58. package/lib/locales/zh-cn.js +1 -1
  59. package/package.json +11 -11
  60. package/src/components/colorbar/attributes.js +1 -0
  61. package/src/components/colorbar/draw.js +1 -0
  62. package/src/components/legend/draw.js +2 -1
  63. package/src/components/modebar/modebar.js +7 -1
  64. package/src/plots/cartesian/axes.js +47 -5
  65. package/src/plots/cartesian/layout_attributes.js +14 -0
  66. package/src/plots/cartesian/tick_label_defaults.js +8 -0
  67. package/src/plots/gl3d/layout/axis_defaults.js +1 -0
  68. package/src/plots/polar/layout_attributes.js +1 -0
  69. package/src/plots/smith/layout_defaults.js +1 -0
  70. package/src/plots/ternary/layout_attributes.js +1 -0
  71. package/src/traces/carpet/ab_defaults.js +1 -0
  72. package/src/traces/indicator/attributes.js +1 -0
  73. package/src/version.js +1 -1
  74. package/.vscode/launch.json +0 -0
@@ -1412,6 +1412,13 @@
1412
1412
  "inside bottom"
1413
1413
  ]
1414
1414
  },
1415
+ "ticklabelstep": {
1416
+ "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*.",
1417
+ "dflt": 1,
1418
+ "editType": "colorbars",
1419
+ "min": 1,
1420
+ "valType": "integer"
1421
+ },
1415
1422
  "ticklen": {
1416
1423
  "description": "Sets the tick length (in px).",
1417
1424
  "dflt": 5,
@@ -3790,6 +3797,13 @@
3790
3797
  },
3791
3798
  "role": "object"
3792
3799
  },
3800
+ "ticklabelstep": {
3801
+ "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*.",
3802
+ "dflt": 1,
3803
+ "editType": "plot",
3804
+ "min": 1,
3805
+ "valType": "integer"
3806
+ },
3793
3807
  "ticklen": {
3794
3808
  "description": "Sets the tick length (in px).",
3795
3809
  "dflt": 5,
@@ -4368,6 +4382,13 @@
4368
4382
  },
4369
4383
  "role": "object"
4370
4384
  },
4385
+ "ticklabelstep": {
4386
+ "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*.",
4387
+ "dflt": 1,
4388
+ "editType": "plot",
4389
+ "min": 1,
4390
+ "valType": "integer"
4391
+ },
4371
4392
  "ticklen": {
4372
4393
  "description": "Sets the tick length (in px).",
4373
4394
  "dflt": 5,
@@ -8076,6 +8097,13 @@
8076
8097
  },
8077
8098
  "role": "object"
8078
8099
  },
8100
+ "ticklabelstep": {
8101
+ "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*.",
8102
+ "dflt": 1,
8103
+ "editType": "plot",
8104
+ "min": 1,
8105
+ "valType": "integer"
8106
+ },
8079
8107
  "ticklen": {
8080
8108
  "description": "Sets the tick length (in px).",
8081
8109
  "dflt": 5,
@@ -8453,6 +8481,13 @@
8453
8481
  },
8454
8482
  "role": "object"
8455
8483
  },
8484
+ "ticklabelstep": {
8485
+ "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*.",
8486
+ "dflt": 1,
8487
+ "editType": "plot",
8488
+ "min": 1,
8489
+ "valType": "integer"
8490
+ },
8456
8491
  "ticklen": {
8457
8492
  "description": "Sets the tick length (in px).",
8458
8493
  "dflt": 5,
@@ -8836,6 +8871,13 @@
8836
8871
  },
8837
8872
  "role": "object"
8838
8873
  },
8874
+ "ticklabelstep": {
8875
+ "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*.",
8876
+ "dflt": 1,
8877
+ "editType": "plot",
8878
+ "min": 1,
8879
+ "valType": "integer"
8880
+ },
8839
8881
  "ticklen": {
8840
8882
  "description": "Sets the tick length (in px).",
8841
8883
  "dflt": 5,
@@ -10451,6 +10493,13 @@
10451
10493
  "inside bottom"
10452
10494
  ]
10453
10495
  },
10496
+ "ticklabelstep": {
10497
+ "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*.",
10498
+ "dflt": 1,
10499
+ "editType": "ticks",
10500
+ "min": 1,
10501
+ "valType": "integer"
10502
+ },
10454
10503
  "ticklen": {
10455
10504
  "description": "Sets the tick length (in px).",
10456
10505
  "dflt": 5,
@@ -11308,6 +11357,13 @@
11308
11357
  "inside bottom"
11309
11358
  ]
11310
11359
  },
11360
+ "ticklabelstep": {
11361
+ "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*.",
11362
+ "dflt": 1,
11363
+ "editType": "ticks",
11364
+ "min": 1,
11365
+ "valType": "integer"
11366
+ },
11311
11367
  "ticklen": {
11312
11368
  "description": "Sets the tick length (in px).",
11313
11369
  "dflt": 5,
@@ -12359,6 +12415,13 @@
12359
12415
  "inside bottom"
12360
12416
  ]
12361
12417
  },
12418
+ "ticklabelstep": {
12419
+ "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*.",
12420
+ "dflt": 1,
12421
+ "editType": "colorbars",
12422
+ "min": 1,
12423
+ "valType": "integer"
12424
+ },
12362
12425
  "ticklen": {
12363
12426
  "description": "Sets the tick length (in px).",
12364
12427
  "dflt": 5,
@@ -13867,6 +13930,13 @@
13867
13930
  "inside bottom"
13868
13931
  ]
13869
13932
  },
13933
+ "ticklabelstep": {
13934
+ "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*.",
13935
+ "dflt": 1,
13936
+ "editType": "colorbars",
13937
+ "min": 1,
13938
+ "valType": "integer"
13939
+ },
13870
13940
  "ticklen": {
13871
13941
  "description": "Sets the tick length (in px).",
13872
13942
  "dflt": 5,
@@ -17991,6 +18061,13 @@
17991
18061
  "inside bottom"
17992
18062
  ]
17993
18063
  },
18064
+ "ticklabelstep": {
18065
+ "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*.",
18066
+ "dflt": 1,
18067
+ "editType": "colorbars",
18068
+ "min": 1,
18069
+ "valType": "integer"
18070
+ },
17994
18071
  "ticklen": {
17995
18072
  "description": "Sets the tick length (in px).",
17996
18073
  "dflt": 5,
@@ -18977,6 +19054,13 @@
18977
19054
  "inside bottom"
18978
19055
  ]
18979
19056
  },
19057
+ "ticklabelstep": {
19058
+ "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*.",
19059
+ "dflt": 1,
19060
+ "editType": "colorbars",
19061
+ "min": 1,
19062
+ "valType": "integer"
19063
+ },
18980
19064
  "ticklen": {
18981
19065
  "description": "Sets the tick length (in px).",
18982
19066
  "dflt": 5,
@@ -19992,6 +20076,13 @@
19992
20076
  "inside bottom"
19993
20077
  ]
19994
20078
  },
20079
+ "ticklabelstep": {
20080
+ "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*.",
20081
+ "dflt": 1,
20082
+ "editType": "colorbars",
20083
+ "min": 1,
20084
+ "valType": "integer"
20085
+ },
19995
20086
  "ticklen": {
19996
20087
  "description": "Sets the tick length (in px).",
19997
20088
  "dflt": 5,
@@ -21025,6 +21116,13 @@
21025
21116
  "inside bottom"
21026
21117
  ]
21027
21118
  },
21119
+ "ticklabelstep": {
21120
+ "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*.",
21121
+ "dflt": 1,
21122
+ "editType": "colorbars",
21123
+ "min": 1,
21124
+ "valType": "integer"
21125
+ },
21028
21126
  "ticklen": {
21029
21127
  "description": "Sets the tick length (in px).",
21030
21128
  "dflt": 5,
@@ -22399,6 +22497,13 @@
22399
22497
  "inside bottom"
22400
22498
  ]
22401
22499
  },
22500
+ "ticklabelstep": {
22501
+ "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*.",
22502
+ "dflt": 1,
22503
+ "editType": "colorbars",
22504
+ "min": 1,
22505
+ "valType": "integer"
22506
+ },
22402
22507
  "ticklen": {
22403
22508
  "description": "Sets the tick length (in px).",
22404
22509
  "dflt": 5,
@@ -23344,6 +23449,13 @@
23344
23449
  "inside bottom"
23345
23450
  ]
23346
23451
  },
23452
+ "ticklabelstep": {
23453
+ "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*.",
23454
+ "dflt": 1,
23455
+ "editType": "colorbars",
23456
+ "min": 1,
23457
+ "valType": "integer"
23458
+ },
23347
23459
  "ticklen": {
23348
23460
  "description": "Sets the tick length (in px).",
23349
23461
  "dflt": 5,
@@ -24632,6 +24744,13 @@
24632
24744
  "inside bottom"
24633
24745
  ]
24634
24746
  },
24747
+ "ticklabelstep": {
24748
+ "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*.",
24749
+ "dflt": 1,
24750
+ "editType": "colorbars",
24751
+ "min": 1,
24752
+ "valType": "integer"
24753
+ },
24635
24754
  "ticklen": {
24636
24755
  "description": "Sets the tick length (in px).",
24637
24756
  "dflt": 5,
@@ -26335,6 +26454,13 @@
26335
26454
  "inside bottom"
26336
26455
  ]
26337
26456
  },
26457
+ "ticklabelstep": {
26458
+ "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*.",
26459
+ "dflt": 1,
26460
+ "editType": "colorbars",
26461
+ "min": 1,
26462
+ "valType": "integer"
26463
+ },
26338
26464
  "ticklen": {
26339
26465
  "description": "Sets the tick length (in px).",
26340
26466
  "dflt": 5,
@@ -27492,6 +27618,13 @@
27492
27618
  "inside bottom"
27493
27619
  ]
27494
27620
  },
27621
+ "ticklabelstep": {
27622
+ "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*.",
27623
+ "dflt": 1,
27624
+ "editType": "calc",
27625
+ "min": 1,
27626
+ "valType": "integer"
27627
+ },
27495
27628
  "ticklen": {
27496
27629
  "description": "Sets the tick length (in px).",
27497
27630
  "dflt": 5,
@@ -29014,6 +29147,13 @@
29014
29147
  "inside bottom"
29015
29148
  ]
29016
29149
  },
29150
+ "ticklabelstep": {
29151
+ "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*.",
29152
+ "dflt": 1,
29153
+ "editType": "colorbars",
29154
+ "min": 1,
29155
+ "valType": "integer"
29156
+ },
29017
29157
  "ticklen": {
29018
29158
  "description": "Sets the tick length (in px).",
29019
29159
  "dflt": 5,
@@ -30191,6 +30331,13 @@
30191
30331
  "inside bottom"
30192
30332
  ]
30193
30333
  },
30334
+ "ticklabelstep": {
30335
+ "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*.",
30336
+ "dflt": 1,
30337
+ "editType": "colorbars",
30338
+ "min": 1,
30339
+ "valType": "integer"
30340
+ },
30194
30341
  "ticklen": {
30195
30342
  "description": "Sets the tick length (in px).",
30196
30343
  "dflt": 5,
@@ -31320,6 +31467,13 @@
31320
31467
  "inside bottom"
31321
31468
  ]
31322
31469
  },
31470
+ "ticklabelstep": {
31471
+ "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*.",
31472
+ "dflt": 1,
31473
+ "editType": "colorbars",
31474
+ "min": 1,
31475
+ "valType": "integer"
31476
+ },
31323
31477
  "ticklen": {
31324
31478
  "description": "Sets the tick length (in px).",
31325
31479
  "dflt": 5,
@@ -32956,6 +33110,13 @@
32956
33110
  "inside bottom"
32957
33111
  ]
32958
33112
  },
33113
+ "ticklabelstep": {
33114
+ "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*.",
33115
+ "dflt": 1,
33116
+ "editType": "colorbars",
33117
+ "min": 1,
33118
+ "valType": "integer"
33119
+ },
32959
33120
  "ticklen": {
32960
33121
  "description": "Sets the tick length (in px).",
32961
33122
  "dflt": 5,
@@ -34333,6 +34494,13 @@
34333
34494
  },
34334
34495
  "role": "object"
34335
34496
  },
34497
+ "ticklabelstep": {
34498
+ "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*.",
34499
+ "dflt": 1,
34500
+ "editType": "plot",
34501
+ "min": 1,
34502
+ "valType": "integer"
34503
+ },
34336
34504
  "ticklen": {
34337
34505
  "description": "Sets the tick length (in px).",
34338
34506
  "dflt": 5,
@@ -35231,6 +35399,13 @@
35231
35399
  "inside bottom"
35232
35400
  ]
35233
35401
  },
35402
+ "ticklabelstep": {
35403
+ "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*.",
35404
+ "dflt": 1,
35405
+ "editType": "calc",
35406
+ "min": 1,
35407
+ "valType": "integer"
35408
+ },
35234
35409
  "ticklen": {
35235
35410
  "description": "Sets the tick length (in px).",
35236
35411
  "dflt": 5,
@@ -36440,6 +36615,13 @@
36440
36615
  "inside bottom"
36441
36616
  ]
36442
36617
  },
36618
+ "ticklabelstep": {
36619
+ "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*.",
36620
+ "dflt": 1,
36621
+ "editType": "colorbars",
36622
+ "min": 1,
36623
+ "valType": "integer"
36624
+ },
36443
36625
  "ticklen": {
36444
36626
  "description": "Sets the tick length (in px).",
36445
36627
  "dflt": 5,
@@ -38403,6 +38585,13 @@
38403
38585
  "inside bottom"
38404
38586
  ]
38405
38587
  },
38588
+ "ticklabelstep": {
38589
+ "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*.",
38590
+ "dflt": 1,
38591
+ "editType": "colorbars",
38592
+ "min": 1,
38593
+ "valType": "integer"
38594
+ },
38406
38595
  "ticklen": {
38407
38596
  "description": "Sets the tick length (in px).",
38408
38597
  "dflt": 5,
@@ -39353,6 +39542,13 @@
39353
39542
  "inside bottom"
39354
39543
  ]
39355
39544
  },
39545
+ "ticklabelstep": {
39546
+ "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*.",
39547
+ "dflt": 1,
39548
+ "editType": "colorbars",
39549
+ "min": 1,
39550
+ "valType": "integer"
39551
+ },
39356
39552
  "ticklen": {
39357
39553
  "description": "Sets the tick length (in px).",
39358
39554
  "dflt": 5,
@@ -42726,6 +42922,13 @@
42726
42922
  "inside bottom"
42727
42923
  ]
42728
42924
  },
42925
+ "ticklabelstep": {
42926
+ "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*.",
42927
+ "dflt": 1,
42928
+ "editType": "colorbars",
42929
+ "min": 1,
42930
+ "valType": "integer"
42931
+ },
42729
42932
  "ticklen": {
42730
42933
  "description": "Sets the tick length (in px).",
42731
42934
  "dflt": 5,
@@ -44915,6 +45118,13 @@
44915
45118
  "inside bottom"
44916
45119
  ]
44917
45120
  },
45121
+ "ticklabelstep": {
45122
+ "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*.",
45123
+ "dflt": 1,
45124
+ "editType": "calc",
45125
+ "min": 1,
45126
+ "valType": "integer"
45127
+ },
44918
45128
  "ticklen": {
44919
45129
  "description": "Sets the tick length (in px).",
44920
45130
  "dflt": 5,
@@ -45497,6 +45707,13 @@
45497
45707
  "inside bottom"
45498
45708
  ]
45499
45709
  },
45710
+ "ticklabelstep": {
45711
+ "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*.",
45712
+ "dflt": 1,
45713
+ "editType": "calc",
45714
+ "min": 1,
45715
+ "valType": "integer"
45716
+ },
45500
45717
  "ticklen": {
45501
45718
  "description": "Sets the tick length (in px).",
45502
45719
  "dflt": 5,
@@ -46932,6 +47149,13 @@
46932
47149
  "inside bottom"
46933
47150
  ]
46934
47151
  },
47152
+ "ticklabelstep": {
47153
+ "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*.",
47154
+ "dflt": 1,
47155
+ "editType": "colorbars",
47156
+ "min": 1,
47157
+ "valType": "integer"
47158
+ },
46935
47159
  "ticklen": {
46936
47160
  "description": "Sets the tick length (in px).",
46937
47161
  "dflt": 5,
@@ -48760,6 +48984,13 @@
48760
48984
  "inside bottom"
48761
48985
  ]
48762
48986
  },
48987
+ "ticklabelstep": {
48988
+ "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*.",
48989
+ "dflt": 1,
48990
+ "editType": "calc",
48991
+ "min": 1,
48992
+ "valType": "integer"
48993
+ },
48763
48994
  "ticklen": {
48764
48995
  "description": "Sets the tick length (in px).",
48765
48996
  "dflt": 5,
@@ -50734,6 +50965,13 @@
50734
50965
  "inside bottom"
50735
50966
  ]
50736
50967
  },
50968
+ "ticklabelstep": {
50969
+ "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*.",
50970
+ "dflt": 1,
50971
+ "editType": "calc",
50972
+ "min": 1,
50973
+ "valType": "integer"
50974
+ },
50737
50975
  "ticklen": {
50738
50976
  "description": "Sets the tick length (in px).",
50739
50977
  "dflt": 5,
@@ -52627,6 +52865,13 @@
52627
52865
  "inside bottom"
52628
52866
  ]
52629
52867
  },
52868
+ "ticklabelstep": {
52869
+ "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*.",
52870
+ "dflt": 1,
52871
+ "editType": "calc",
52872
+ "min": 1,
52873
+ "valType": "integer"
52874
+ },
52630
52875
  "ticklen": {
52631
52876
  "description": "Sets the tick length (in px).",
52632
52877
  "dflt": 5,
@@ -53789,6 +54034,13 @@
53789
54034
  "inside bottom"
53790
54035
  ]
53791
54036
  },
54037
+ "ticklabelstep": {
54038
+ "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*.",
54039
+ "dflt": 1,
54040
+ "editType": "colorbars",
54041
+ "min": 1,
54042
+ "valType": "integer"
54043
+ },
53792
54044
  "ticklen": {
53793
54045
  "description": "Sets the tick length (in px).",
53794
54046
  "dflt": 5,
@@ -55620,6 +55872,13 @@
55620
55872
  "inside bottom"
55621
55873
  ]
55622
55874
  },
55875
+ "ticklabelstep": {
55876
+ "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*.",
55877
+ "dflt": 1,
55878
+ "editType": "calc",
55879
+ "min": 1,
55880
+ "valType": "integer"
55881
+ },
55623
55882
  "ticklen": {
55624
55883
  "description": "Sets the tick length (in px).",
55625
55884
  "dflt": 5,
@@ -57428,6 +57687,13 @@
57428
57687
  "inside bottom"
57429
57688
  ]
57430
57689
  },
57690
+ "ticklabelstep": {
57691
+ "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*.",
57692
+ "dflt": 1,
57693
+ "editType": "colorbars",
57694
+ "min": 1,
57695
+ "valType": "integer"
57696
+ },
57431
57697
  "ticklen": {
57432
57698
  "description": "Sets the tick length (in px).",
57433
57699
  "dflt": 5,
@@ -59262,6 +59528,13 @@
59262
59528
  "inside bottom"
59263
59529
  ]
59264
59530
  },
59531
+ "ticklabelstep": {
59532
+ "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*.",
59533
+ "dflt": 1,
59534
+ "editType": "colorbars",
59535
+ "min": 1,
59536
+ "valType": "integer"
59537
+ },
59265
59538
  "ticklen": {
59266
59539
  "description": "Sets the tick length (in px).",
59267
59540
  "dflt": 5,
@@ -61050,6 +61323,13 @@
61050
61323
  "inside bottom"
61051
61324
  ]
61052
61325
  },
61326
+ "ticklabelstep": {
61327
+ "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*.",
61328
+ "dflt": 1,
61329
+ "editType": "colorbars",
61330
+ "min": 1,
61331
+ "valType": "integer"
61332
+ },
61053
61333
  "ticklen": {
61054
61334
  "description": "Sets the tick length (in px).",
61055
61335
  "dflt": 5,
@@ -62442,6 +62722,13 @@
62442
62722
  "inside bottom"
62443
62723
  ]
62444
62724
  },
62725
+ "ticklabelstep": {
62726
+ "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*.",
62727
+ "dflt": 1,
62728
+ "editType": "colorbars",
62729
+ "min": 1,
62730
+ "valType": "integer"
62731
+ },
62445
62732
  "ticklen": {
62446
62733
  "description": "Sets the tick length (in px).",
62447
62734
  "dflt": 5,
@@ -63888,6 +64175,13 @@
63888
64175
  "inside bottom"
63889
64176
  ]
63890
64177
  },
64178
+ "ticklabelstep": {
64179
+ "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*.",
64180
+ "dflt": 1,
64181
+ "editType": "colorbars",
64182
+ "min": 1,
64183
+ "valType": "integer"
64184
+ },
63891
64185
  "ticklen": {
63892
64186
  "description": "Sets the tick length (in px).",
63893
64187
  "dflt": 5,
@@ -64754,6 +65048,13 @@
64754
65048
  "inside bottom"
64755
65049
  ]
64756
65050
  },
65051
+ "ticklabelstep": {
65052
+ "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*.",
65053
+ "dflt": 1,
65054
+ "editType": "calc",
65055
+ "min": 1,
65056
+ "valType": "integer"
65057
+ },
64757
65058
  "ticklen": {
64758
65059
  "description": "Sets the tick length (in px).",
64759
65060
  "dflt": 5,
@@ -67089,6 +67390,13 @@
67089
67390
  "inside bottom"
67090
67391
  ]
67091
67392
  },
67393
+ "ticklabelstep": {
67394
+ "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*.",
67395
+ "dflt": 1,
67396
+ "editType": "colorbars",
67397
+ "min": 1,
67398
+ "valType": "integer"
67399
+ },
67092
67400
  "ticklen": {
67093
67401
  "description": "Sets the tick length (in px).",
67094
67402
  "dflt": 5,
@@ -69378,6 +69686,13 @@
69378
69686
  "inside bottom"
69379
69687
  ]
69380
69688
  },
69689
+ "ticklabelstep": {
69690
+ "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*.",
69691
+ "dflt": 1,
69692
+ "editType": "calc",
69693
+ "min": 1,
69694
+ "valType": "integer"
69695
+ },
69381
69696
  "ticklen": {
69382
69697
  "description": "Sets the tick length (in px).",
69383
69698
  "dflt": 5,