plotly.js 2.7.0 → 2.8.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 (52) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/README.md +3 -3
  3. package/dist/README.md +26 -26
  4. package/dist/plot-schema.json +898 -407
  5. package/dist/plotly-basic.js +489 -185
  6. package/dist/plotly-basic.min.js +4 -4
  7. package/dist/plotly-cartesian.js +894 -326
  8. package/dist/plotly-cartesian.min.js +3 -3
  9. package/dist/plotly-finance.js +489 -185
  10. package/dist/plotly-finance.min.js +4 -4
  11. package/dist/plotly-geo-assets.js +2 -2
  12. package/dist/plotly-geo.js +486 -184
  13. package/dist/plotly-geo.min.js +4 -4
  14. package/dist/plotly-gl2d.js +502 -185
  15. package/dist/plotly-gl2d.min.js +2 -2
  16. package/dist/plotly-gl3d.js +486 -184
  17. package/dist/plotly-gl3d.min.js +2 -2
  18. package/dist/plotly-mapbox.js +486 -184
  19. package/dist/plotly-mapbox.min.js +2 -2
  20. package/dist/plotly-strict.js +1112 -544
  21. package/dist/plotly-strict.min.js +3 -3
  22. package/dist/plotly-with-meta.js +1201 -606
  23. package/dist/plotly.js +1166 -598
  24. package/dist/plotly.min.js +10 -10
  25. package/package.json +4 -4
  26. package/src/components/colorbar/attributes.js +29 -20
  27. package/src/components/colorbar/defaults.js +30 -8
  28. package/src/components/colorbar/draw.js +374 -128
  29. package/src/components/fx/hover.js +5 -2
  30. package/src/components/fx/hoverlabel_defaults.js +4 -2
  31. package/src/components/fx/layout_attributes.js +14 -4
  32. package/src/components/fx/layout_defaults.js +2 -0
  33. package/src/components/legend/attributes.js +7 -0
  34. package/src/components/legend/defaults.js +24 -7
  35. package/src/components/titles/index.js +8 -2
  36. package/src/plot_api/plot_api.js +1 -1
  37. package/src/plots/font_attributes.js +3 -0
  38. package/src/plots/layout_attributes.js +1 -0
  39. package/src/plots/plots.js +7 -15
  40. package/src/traces/contour/attributes.js +12 -0
  41. package/src/traces/contour/defaults.js +9 -1
  42. package/src/traces/heatmap/attributes.js +16 -0
  43. package/src/traces/heatmap/defaults.js +2 -0
  44. package/src/traces/heatmap/label_defaults.js +13 -0
  45. package/src/traces/heatmap/plot.js +203 -4
  46. package/src/traces/histogram2d/attributes.js +8 -0
  47. package/src/traces/histogram2d/defaults.js +4 -0
  48. package/src/traces/histogram2dcontour/attributes.js +3 -1
  49. package/src/traces/histogram2dcontour/defaults.js +8 -1
  50. package/src/traces/pie/calc.js +3 -1
  51. package/src/version.js +1 -1
  52. package/tasks/test_mock.js +1 -0
@@ -1202,6 +1202,16 @@
1202
1202
  "min": 0,
1203
1203
  "valType": "integer"
1204
1204
  },
1205
+ "orientation": {
1206
+ "description": "Sets the orientation of the colorbar.",
1207
+ "dflt": "v",
1208
+ "editType": "colorbars",
1209
+ "valType": "enumerated",
1210
+ "values": [
1211
+ "h",
1212
+ "v"
1213
+ ]
1214
+ },
1205
1215
  "outlinecolor": {
1206
1216
  "description": "Sets the axis line color.",
1207
1217
  "dflt": "#444",
@@ -1385,7 +1395,7 @@
1385
1395
  ]
1386
1396
  },
1387
1397
  "ticklabelposition": {
1388
- "description": "Determines where tick labels are drawn.",
1398
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
1389
1399
  "dflt": "outside",
1390
1400
  "editType": "colorbars",
1391
1401
  "valType": "enumerated",
@@ -1394,6 +1404,10 @@
1394
1404
  "inside",
1395
1405
  "outside top",
1396
1406
  "inside top",
1407
+ "outside left",
1408
+ "inside left",
1409
+ "outside right",
1410
+ "inside right",
1397
1411
  "outside bottom",
1398
1412
  "inside bottom"
1399
1413
  ]
@@ -1491,8 +1505,7 @@
1491
1505
  },
1492
1506
  "role": "object",
1493
1507
  "side": {
1494
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
1495
- "dflt": "top",
1508
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
1496
1509
  "editType": "colorbars",
1497
1510
  "valType": "enumerated",
1498
1511
  "values": [
@@ -1508,16 +1521,14 @@
1508
1521
  }
1509
1522
  },
1510
1523
  "x": {
1511
- "description": "Sets the x position of the color bar (in plot fraction).",
1512
- "dflt": 1.02,
1524
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
1513
1525
  "editType": "colorbars",
1514
1526
  "max": 3,
1515
1527
  "min": -2,
1516
1528
  "valType": "number"
1517
1529
  },
1518
1530
  "xanchor": {
1519
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
1520
- "dflt": "left",
1531
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
1521
1532
  "editType": "colorbars",
1522
1533
  "valType": "enumerated",
1523
1534
  "values": [
@@ -1534,16 +1545,14 @@
1534
1545
  "valType": "number"
1535
1546
  },
1536
1547
  "y": {
1537
- "description": "Sets the y position of the color bar (in plot fraction).",
1538
- "dflt": 0.5,
1548
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
1539
1549
  "editType": "colorbars",
1540
1550
  "max": 3,
1541
1551
  "min": -2,
1542
1552
  "valType": "number"
1543
1553
  },
1544
1554
  "yanchor": {
1545
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
1546
- "dflt": "middle",
1555
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
1547
1556
  "editType": "colorbars",
1548
1557
  "valType": "enumerated",
1549
1558
  "values": [
@@ -2494,6 +2503,27 @@
2494
2503
  "valType": "number"
2495
2504
  }
2496
2505
  },
2506
+ "grouptitlefont": {
2507
+ "color": {
2508
+ "editType": "none",
2509
+ "valType": "color"
2510
+ },
2511
+ "description": "Sets the font for group titles in hover (unified modes). Defaults to `hoverlabel.font`.",
2512
+ "editType": "none",
2513
+ "family": {
2514
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
2515
+ "editType": "none",
2516
+ "noBlank": true,
2517
+ "strict": true,
2518
+ "valType": "string"
2519
+ },
2520
+ "role": "object",
2521
+ "size": {
2522
+ "editType": "none",
2523
+ "min": 1,
2524
+ "valType": "number"
2525
+ }
2526
+ },
2497
2527
  "namelength": {
2498
2528
  "description": "Sets the default length (in number of characters) of the trace name in the hover labels for all traces. -1 shows the whole name regardless of length. 0-3 shows the first 0-3 characters, and an integer >3 will show the whole name if it is less than that many characters, but if it is longer, will truncate to `namelength - 3` characters and add an ellipsis.",
2499
2529
  "dflt": 15,
@@ -2693,6 +2723,27 @@
2693
2723
  "togglegroup"
2694
2724
  ]
2695
2725
  },
2726
+ "grouptitlefont": {
2727
+ "color": {
2728
+ "editType": "legend",
2729
+ "valType": "color"
2730
+ },
2731
+ "description": "Sets the font for group titles in legend. Defaults to `legend.font` with its size increased about 10%.",
2732
+ "editType": "legend",
2733
+ "family": {
2734
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
2735
+ "editType": "legend",
2736
+ "noBlank": true,
2737
+ "strict": true,
2738
+ "valType": "string"
2739
+ },
2740
+ "role": "object",
2741
+ "size": {
2742
+ "editType": "legend",
2743
+ "min": 1,
2744
+ "valType": "number"
2745
+ }
2746
+ },
2696
2747
  "itemclick": {
2697
2748
  "description": "Determines the behavior on legend item click. *toggle* toggles the visibility of the item clicked on the graph. *toggleothers* makes the clicked item the sole visible item on the graph. *false* disables legend item click interactions.",
2698
2749
  "dflt": "toggle",
@@ -12098,6 +12149,16 @@
12098
12149
  "min": 0,
12099
12150
  "valType": "integer"
12100
12151
  },
12152
+ "orientation": {
12153
+ "description": "Sets the orientation of the colorbar.",
12154
+ "dflt": "v",
12155
+ "editType": "colorbars",
12156
+ "valType": "enumerated",
12157
+ "values": [
12158
+ "h",
12159
+ "v"
12160
+ ]
12161
+ },
12101
12162
  "outlinecolor": {
12102
12163
  "description": "Sets the axis line color.",
12103
12164
  "dflt": "#444",
@@ -12281,7 +12342,7 @@
12281
12342
  ]
12282
12343
  },
12283
12344
  "ticklabelposition": {
12284
- "description": "Determines where tick labels are drawn.",
12345
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
12285
12346
  "dflt": "outside",
12286
12347
  "editType": "colorbars",
12287
12348
  "valType": "enumerated",
@@ -12290,6 +12351,10 @@
12290
12351
  "inside",
12291
12352
  "outside top",
12292
12353
  "inside top",
12354
+ "outside left",
12355
+ "inside left",
12356
+ "outside right",
12357
+ "inside right",
12293
12358
  "outside bottom",
12294
12359
  "inside bottom"
12295
12360
  ]
@@ -12387,8 +12452,7 @@
12387
12452
  },
12388
12453
  "role": "object",
12389
12454
  "side": {
12390
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
12391
- "dflt": "top",
12455
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
12392
12456
  "editType": "colorbars",
12393
12457
  "valType": "enumerated",
12394
12458
  "values": [
@@ -12404,16 +12468,14 @@
12404
12468
  }
12405
12469
  },
12406
12470
  "x": {
12407
- "description": "Sets the x position of the color bar (in plot fraction).",
12408
- "dflt": 1.02,
12471
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
12409
12472
  "editType": "colorbars",
12410
12473
  "max": 3,
12411
12474
  "min": -2,
12412
12475
  "valType": "number"
12413
12476
  },
12414
12477
  "xanchor": {
12415
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
12416
- "dflt": "left",
12478
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
12417
12479
  "editType": "colorbars",
12418
12480
  "valType": "enumerated",
12419
12481
  "values": [
@@ -12430,16 +12492,14 @@
12430
12492
  "valType": "number"
12431
12493
  },
12432
12494
  "y": {
12433
- "description": "Sets the y position of the color bar (in plot fraction).",
12434
- "dflt": 0.5,
12495
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
12435
12496
  "editType": "colorbars",
12436
12497
  "max": 3,
12437
12498
  "min": -2,
12438
12499
  "valType": "number"
12439
12500
  },
12440
12501
  "yanchor": {
12441
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
12442
- "dflt": "middle",
12502
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
12443
12503
  "editType": "colorbars",
12444
12504
  "valType": "enumerated",
12445
12505
  "values": [
@@ -13597,6 +13657,16 @@
13597
13657
  "min": 0,
13598
13658
  "valType": "integer"
13599
13659
  },
13660
+ "orientation": {
13661
+ "description": "Sets the orientation of the colorbar.",
13662
+ "dflt": "v",
13663
+ "editType": "colorbars",
13664
+ "valType": "enumerated",
13665
+ "values": [
13666
+ "h",
13667
+ "v"
13668
+ ]
13669
+ },
13600
13670
  "outlinecolor": {
13601
13671
  "description": "Sets the axis line color.",
13602
13672
  "dflt": "#444",
@@ -13780,7 +13850,7 @@
13780
13850
  ]
13781
13851
  },
13782
13852
  "ticklabelposition": {
13783
- "description": "Determines where tick labels are drawn.",
13853
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
13784
13854
  "dflt": "outside",
13785
13855
  "editType": "colorbars",
13786
13856
  "valType": "enumerated",
@@ -13789,6 +13859,10 @@
13789
13859
  "inside",
13790
13860
  "outside top",
13791
13861
  "inside top",
13862
+ "outside left",
13863
+ "inside left",
13864
+ "outside right",
13865
+ "inside right",
13792
13866
  "outside bottom",
13793
13867
  "inside bottom"
13794
13868
  ]
@@ -13886,8 +13960,7 @@
13886
13960
  },
13887
13961
  "role": "object",
13888
13962
  "side": {
13889
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
13890
- "dflt": "top",
13963
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
13891
13964
  "editType": "colorbars",
13892
13965
  "valType": "enumerated",
13893
13966
  "values": [
@@ -13903,16 +13976,14 @@
13903
13976
  }
13904
13977
  },
13905
13978
  "x": {
13906
- "description": "Sets the x position of the color bar (in plot fraction).",
13907
- "dflt": 1.02,
13979
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
13908
13980
  "editType": "colorbars",
13909
13981
  "max": 3,
13910
13982
  "min": -2,
13911
13983
  "valType": "number"
13912
13984
  },
13913
13985
  "xanchor": {
13914
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
13915
- "dflt": "left",
13986
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
13916
13987
  "editType": "colorbars",
13917
13988
  "valType": "enumerated",
13918
13989
  "values": [
@@ -13929,16 +14000,14 @@
13929
14000
  "valType": "number"
13930
14001
  },
13931
14002
  "y": {
13932
- "description": "Sets the y position of the color bar (in plot fraction).",
13933
- "dflt": 0.5,
14003
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
13934
14004
  "editType": "colorbars",
13935
14005
  "max": 3,
13936
14006
  "min": -2,
13937
14007
  "valType": "number"
13938
14008
  },
13939
14009
  "yanchor": {
13940
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
13941
- "dflt": "middle",
14010
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
13942
14011
  "editType": "colorbars",
13943
14012
  "valType": "enumerated",
13944
14013
  "values": [
@@ -17712,6 +17781,16 @@
17712
17781
  "min": 0,
17713
17782
  "valType": "integer"
17714
17783
  },
17784
+ "orientation": {
17785
+ "description": "Sets the orientation of the colorbar.",
17786
+ "dflt": "v",
17787
+ "editType": "colorbars",
17788
+ "valType": "enumerated",
17789
+ "values": [
17790
+ "h",
17791
+ "v"
17792
+ ]
17793
+ },
17715
17794
  "outlinecolor": {
17716
17795
  "description": "Sets the axis line color.",
17717
17796
  "dflt": "#444",
@@ -17895,7 +17974,7 @@
17895
17974
  ]
17896
17975
  },
17897
17976
  "ticklabelposition": {
17898
- "description": "Determines where tick labels are drawn.",
17977
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
17899
17978
  "dflt": "outside",
17900
17979
  "editType": "colorbars",
17901
17980
  "valType": "enumerated",
@@ -17904,6 +17983,10 @@
17904
17983
  "inside",
17905
17984
  "outside top",
17906
17985
  "inside top",
17986
+ "outside left",
17987
+ "inside left",
17988
+ "outside right",
17989
+ "inside right",
17907
17990
  "outside bottom",
17908
17991
  "inside bottom"
17909
17992
  ]
@@ -18001,8 +18084,7 @@
18001
18084
  },
18002
18085
  "role": "object",
18003
18086
  "side": {
18004
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
18005
- "dflt": "top",
18087
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
18006
18088
  "editType": "colorbars",
18007
18089
  "valType": "enumerated",
18008
18090
  "values": [
@@ -18018,16 +18100,14 @@
18018
18100
  }
18019
18101
  },
18020
18102
  "x": {
18021
- "description": "Sets the x position of the color bar (in plot fraction).",
18022
- "dflt": 1.02,
18103
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
18023
18104
  "editType": "colorbars",
18024
18105
  "max": 3,
18025
18106
  "min": -2,
18026
18107
  "valType": "number"
18027
18108
  },
18028
18109
  "xanchor": {
18029
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
18030
- "dflt": "left",
18110
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
18031
18111
  "editType": "colorbars",
18032
18112
  "valType": "enumerated",
18033
18113
  "values": [
@@ -18044,16 +18124,14 @@
18044
18124
  "valType": "number"
18045
18125
  },
18046
18126
  "y": {
18047
- "description": "Sets the y position of the color bar (in plot fraction).",
18048
- "dflt": 0.5,
18127
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
18049
18128
  "editType": "colorbars",
18050
18129
  "max": 3,
18051
18130
  "min": -2,
18052
18131
  "valType": "number"
18053
18132
  },
18054
18133
  "yanchor": {
18055
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
18056
- "dflt": "middle",
18134
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
18057
18135
  "editType": "colorbars",
18058
18136
  "valType": "enumerated",
18059
18137
  "values": [
@@ -18689,6 +18767,16 @@
18689
18767
  "min": 0,
18690
18768
  "valType": "integer"
18691
18769
  },
18770
+ "orientation": {
18771
+ "description": "Sets the orientation of the colorbar.",
18772
+ "dflt": "v",
18773
+ "editType": "colorbars",
18774
+ "valType": "enumerated",
18775
+ "values": [
18776
+ "h",
18777
+ "v"
18778
+ ]
18779
+ },
18692
18780
  "outlinecolor": {
18693
18781
  "description": "Sets the axis line color.",
18694
18782
  "dflt": "#444",
@@ -18872,7 +18960,7 @@
18872
18960
  ]
18873
18961
  },
18874
18962
  "ticklabelposition": {
18875
- "description": "Determines where tick labels are drawn.",
18963
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
18876
18964
  "dflt": "outside",
18877
18965
  "editType": "colorbars",
18878
18966
  "valType": "enumerated",
@@ -18881,6 +18969,10 @@
18881
18969
  "inside",
18882
18970
  "outside top",
18883
18971
  "inside top",
18972
+ "outside left",
18973
+ "inside left",
18974
+ "outside right",
18975
+ "inside right",
18884
18976
  "outside bottom",
18885
18977
  "inside bottom"
18886
18978
  ]
@@ -18978,8 +19070,7 @@
18978
19070
  },
18979
19071
  "role": "object",
18980
19072
  "side": {
18981
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
18982
- "dflt": "top",
19073
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
18983
19074
  "editType": "colorbars",
18984
19075
  "valType": "enumerated",
18985
19076
  "values": [
@@ -18995,16 +19086,14 @@
18995
19086
  }
18996
19087
  },
18997
19088
  "x": {
18998
- "description": "Sets the x position of the color bar (in plot fraction).",
18999
- "dflt": 1.02,
19089
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
19000
19090
  "editType": "colorbars",
19001
19091
  "max": 3,
19002
19092
  "min": -2,
19003
19093
  "valType": "number"
19004
19094
  },
19005
19095
  "xanchor": {
19006
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
19007
- "dflt": "left",
19096
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
19008
19097
  "editType": "colorbars",
19009
19098
  "valType": "enumerated",
19010
19099
  "values": [
@@ -19021,16 +19110,14 @@
19021
19110
  "valType": "number"
19022
19111
  },
19023
19112
  "y": {
19024
- "description": "Sets the y position of the color bar (in plot fraction).",
19025
- "dflt": 0.5,
19113
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
19026
19114
  "editType": "colorbars",
19027
19115
  "max": 3,
19028
19116
  "min": -2,
19029
19117
  "valType": "number"
19030
19118
  },
19031
19119
  "yanchor": {
19032
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
19033
- "dflt": "middle",
19120
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
19034
19121
  "editType": "colorbars",
19035
19122
  "valType": "enumerated",
19036
19123
  "values": [
@@ -19695,6 +19782,16 @@
19695
19782
  "min": 0,
19696
19783
  "valType": "integer"
19697
19784
  },
19785
+ "orientation": {
19786
+ "description": "Sets the orientation of the colorbar.",
19787
+ "dflt": "v",
19788
+ "editType": "colorbars",
19789
+ "valType": "enumerated",
19790
+ "values": [
19791
+ "h",
19792
+ "v"
19793
+ ]
19794
+ },
19698
19795
  "outlinecolor": {
19699
19796
  "description": "Sets the axis line color.",
19700
19797
  "dflt": "#444",
@@ -19878,7 +19975,7 @@
19878
19975
  ]
19879
19976
  },
19880
19977
  "ticklabelposition": {
19881
- "description": "Determines where tick labels are drawn.",
19978
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
19882
19979
  "dflt": "outside",
19883
19980
  "editType": "colorbars",
19884
19981
  "valType": "enumerated",
@@ -19887,6 +19984,10 @@
19887
19984
  "inside",
19888
19985
  "outside top",
19889
19986
  "inside top",
19987
+ "outside left",
19988
+ "inside left",
19989
+ "outside right",
19990
+ "inside right",
19890
19991
  "outside bottom",
19891
19992
  "inside bottom"
19892
19993
  ]
@@ -19984,8 +20085,7 @@
19984
20085
  },
19985
20086
  "role": "object",
19986
20087
  "side": {
19987
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
19988
- "dflt": "top",
20088
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
19989
20089
  "editType": "colorbars",
19990
20090
  "valType": "enumerated",
19991
20091
  "values": [
@@ -20001,16 +20101,14 @@
20001
20101
  }
20002
20102
  },
20003
20103
  "x": {
20004
- "description": "Sets the x position of the color bar (in plot fraction).",
20005
- "dflt": 1.02,
20104
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
20006
20105
  "editType": "colorbars",
20007
20106
  "max": 3,
20008
20107
  "min": -2,
20009
20108
  "valType": "number"
20010
20109
  },
20011
20110
  "xanchor": {
20012
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
20013
- "dflt": "left",
20111
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
20014
20112
  "editType": "colorbars",
20015
20113
  "valType": "enumerated",
20016
20114
  "values": [
@@ -20027,16 +20125,14 @@
20027
20125
  "valType": "number"
20028
20126
  },
20029
20127
  "y": {
20030
- "description": "Sets the y position of the color bar (in plot fraction).",
20031
- "dflt": 0.5,
20128
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
20032
20129
  "editType": "colorbars",
20033
20130
  "max": 3,
20034
20131
  "min": -2,
20035
20132
  "valType": "number"
20036
20133
  },
20037
20134
  "yanchor": {
20038
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
20039
- "dflt": "middle",
20135
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
20040
20136
  "editType": "colorbars",
20041
20137
  "valType": "enumerated",
20042
20138
  "values": [
@@ -20719,6 +20815,16 @@
20719
20815
  "min": 0,
20720
20816
  "valType": "integer"
20721
20817
  },
20818
+ "orientation": {
20819
+ "description": "Sets the orientation of the colorbar.",
20820
+ "dflt": "v",
20821
+ "editType": "colorbars",
20822
+ "valType": "enumerated",
20823
+ "values": [
20824
+ "h",
20825
+ "v"
20826
+ ]
20827
+ },
20722
20828
  "outlinecolor": {
20723
20829
  "description": "Sets the axis line color.",
20724
20830
  "dflt": "#444",
@@ -20902,7 +21008,7 @@
20902
21008
  ]
20903
21009
  },
20904
21010
  "ticklabelposition": {
20905
- "description": "Determines where tick labels are drawn.",
21011
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
20906
21012
  "dflt": "outside",
20907
21013
  "editType": "colorbars",
20908
21014
  "valType": "enumerated",
@@ -20911,6 +21017,10 @@
20911
21017
  "inside",
20912
21018
  "outside top",
20913
21019
  "inside top",
21020
+ "outside left",
21021
+ "inside left",
21022
+ "outside right",
21023
+ "inside right",
20914
21024
  "outside bottom",
20915
21025
  "inside bottom"
20916
21026
  ]
@@ -21008,8 +21118,7 @@
21008
21118
  },
21009
21119
  "role": "object",
21010
21120
  "side": {
21011
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
21012
- "dflt": "top",
21121
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
21013
21122
  "editType": "colorbars",
21014
21123
  "valType": "enumerated",
21015
21124
  "values": [
@@ -21025,16 +21134,14 @@
21025
21134
  }
21026
21135
  },
21027
21136
  "x": {
21028
- "description": "Sets the x position of the color bar (in plot fraction).",
21029
- "dflt": 1.02,
21137
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
21030
21138
  "editType": "colorbars",
21031
21139
  "max": 3,
21032
21140
  "min": -2,
21033
21141
  "valType": "number"
21034
21142
  },
21035
21143
  "xanchor": {
21036
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
21037
- "dflt": "left",
21144
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
21038
21145
  "editType": "colorbars",
21039
21146
  "valType": "enumerated",
21040
21147
  "values": [
@@ -21051,16 +21158,14 @@
21051
21158
  "valType": "number"
21052
21159
  },
21053
21160
  "y": {
21054
- "description": "Sets the y position of the color bar (in plot fraction).",
21055
- "dflt": 0.5,
21161
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
21056
21162
  "editType": "colorbars",
21057
21163
  "max": 3,
21058
21164
  "min": -2,
21059
21165
  "valType": "number"
21060
21166
  },
21061
21167
  "yanchor": {
21062
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
21063
- "dflt": "middle",
21168
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
21064
21169
  "editType": "colorbars",
21065
21170
  "valType": "enumerated",
21066
21171
  "values": [
@@ -21558,11 +21663,40 @@
21558
21663
  "editType": "calc",
21559
21664
  "valType": "data_array"
21560
21665
  },
21666
+ "textfont": {
21667
+ "color": {
21668
+ "dflt": "auto",
21669
+ "editType": "style",
21670
+ "valType": "color"
21671
+ },
21672
+ "description": "For this trace it only has an effect if `coloring` is set to *heatmap*. Sets the text font.",
21673
+ "editType": "plot",
21674
+ "family": {
21675
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
21676
+ "editType": "plot",
21677
+ "noBlank": true,
21678
+ "strict": true,
21679
+ "valType": "string"
21680
+ },
21681
+ "role": "object",
21682
+ "size": {
21683
+ "dflt": "auto",
21684
+ "editType": "plot",
21685
+ "min": 1,
21686
+ "valType": "number"
21687
+ }
21688
+ },
21561
21689
  "textsrc": {
21562
21690
  "description": "Sets the source reference on Chart Studio Cloud for `text`.",
21563
21691
  "editType": "none",
21564
21692
  "valType": "string"
21565
21693
  },
21694
+ "texttemplate": {
21695
+ "description": "For this trace it only has an effect if `coloring` is set to *heatmap*. Template string used for rendering the information text that appear on points. Note that this will override `textinfo`. Variables are inserted using %{variable}, for example \"y: %{y}\". Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. Every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available. variables `x`, `y`, `z` and `text`.",
21696
+ "dflt": "",
21697
+ "editType": "plot",
21698
+ "valType": "string"
21699
+ },
21566
21700
  "transforms": {
21567
21701
  "items": {
21568
21702
  "transform": {
@@ -22055,6 +22189,16 @@
22055
22189
  "min": 0,
22056
22190
  "valType": "integer"
22057
22191
  },
22192
+ "orientation": {
22193
+ "description": "Sets the orientation of the colorbar.",
22194
+ "dflt": "v",
22195
+ "editType": "colorbars",
22196
+ "valType": "enumerated",
22197
+ "values": [
22198
+ "h",
22199
+ "v"
22200
+ ]
22201
+ },
22058
22202
  "outlinecolor": {
22059
22203
  "description": "Sets the axis line color.",
22060
22204
  "dflt": "#444",
@@ -22238,7 +22382,7 @@
22238
22382
  ]
22239
22383
  },
22240
22384
  "ticklabelposition": {
22241
- "description": "Determines where tick labels are drawn.",
22385
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
22242
22386
  "dflt": "outside",
22243
22387
  "editType": "colorbars",
22244
22388
  "valType": "enumerated",
@@ -22247,6 +22391,10 @@
22247
22391
  "inside",
22248
22392
  "outside top",
22249
22393
  "inside top",
22394
+ "outside left",
22395
+ "inside left",
22396
+ "outside right",
22397
+ "inside right",
22250
22398
  "outside bottom",
22251
22399
  "inside bottom"
22252
22400
  ]
@@ -22344,8 +22492,7 @@
22344
22492
  },
22345
22493
  "role": "object",
22346
22494
  "side": {
22347
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
22348
- "dflt": "top",
22495
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
22349
22496
  "editType": "colorbars",
22350
22497
  "valType": "enumerated",
22351
22498
  "values": [
@@ -22361,16 +22508,14 @@
22361
22508
  }
22362
22509
  },
22363
22510
  "x": {
22364
- "description": "Sets the x position of the color bar (in plot fraction).",
22365
- "dflt": 1.02,
22511
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
22366
22512
  "editType": "colorbars",
22367
22513
  "max": 3,
22368
22514
  "min": -2,
22369
22515
  "valType": "number"
22370
22516
  },
22371
22517
  "xanchor": {
22372
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
22373
- "dflt": "left",
22518
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
22374
22519
  "editType": "colorbars",
22375
22520
  "valType": "enumerated",
22376
22521
  "values": [
@@ -22387,16 +22532,14 @@
22387
22532
  "valType": "number"
22388
22533
  },
22389
22534
  "y": {
22390
- "description": "Sets the y position of the color bar (in plot fraction).",
22391
- "dflt": 0.5,
22535
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
22392
22536
  "editType": "colorbars",
22393
22537
  "max": 3,
22394
22538
  "min": -2,
22395
22539
  "valType": "number"
22396
22540
  },
22397
22541
  "yanchor": {
22398
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
22399
- "dflt": "middle",
22542
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
22400
22543
  "editType": "colorbars",
22401
22544
  "valType": "enumerated",
22402
22545
  "values": [
@@ -22991,6 +23134,16 @@
22991
23134
  "min": 0,
22992
23135
  "valType": "integer"
22993
23136
  },
23137
+ "orientation": {
23138
+ "description": "Sets the orientation of the colorbar.",
23139
+ "dflt": "v",
23140
+ "editType": "colorbars",
23141
+ "valType": "enumerated",
23142
+ "values": [
23143
+ "h",
23144
+ "v"
23145
+ ]
23146
+ },
22994
23147
  "outlinecolor": {
22995
23148
  "description": "Sets the axis line color.",
22996
23149
  "dflt": "#444",
@@ -23174,7 +23327,7 @@
23174
23327
  ]
23175
23328
  },
23176
23329
  "ticklabelposition": {
23177
- "description": "Determines where tick labels are drawn.",
23330
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
23178
23331
  "dflt": "outside",
23179
23332
  "editType": "colorbars",
23180
23333
  "valType": "enumerated",
@@ -23183,6 +23336,10 @@
23183
23336
  "inside",
23184
23337
  "outside top",
23185
23338
  "inside top",
23339
+ "outside left",
23340
+ "inside left",
23341
+ "outside right",
23342
+ "inside right",
23186
23343
  "outside bottom",
23187
23344
  "inside bottom"
23188
23345
  ]
@@ -23280,8 +23437,7 @@
23280
23437
  },
23281
23438
  "role": "object",
23282
23439
  "side": {
23283
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
23284
- "dflt": "top",
23440
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
23285
23441
  "editType": "colorbars",
23286
23442
  "valType": "enumerated",
23287
23443
  "values": [
@@ -23297,16 +23453,14 @@
23297
23453
  }
23298
23454
  },
23299
23455
  "x": {
23300
- "description": "Sets the x position of the color bar (in plot fraction).",
23301
- "dflt": 1.02,
23456
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
23302
23457
  "editType": "colorbars",
23303
23458
  "max": 3,
23304
23459
  "min": -2,
23305
23460
  "valType": "number"
23306
23461
  },
23307
23462
  "xanchor": {
23308
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
23309
- "dflt": "left",
23463
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
23310
23464
  "editType": "colorbars",
23311
23465
  "valType": "enumerated",
23312
23466
  "values": [
@@ -23323,16 +23477,14 @@
23323
23477
  "valType": "number"
23324
23478
  },
23325
23479
  "y": {
23326
- "description": "Sets the y position of the color bar (in plot fraction).",
23327
- "dflt": 0.5,
23480
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
23328
23481
  "editType": "colorbars",
23329
23482
  "max": 3,
23330
23483
  "min": -2,
23331
23484
  "valType": "number"
23332
23485
  },
23333
23486
  "yanchor": {
23334
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
23335
- "dflt": "middle",
23487
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
23336
23488
  "editType": "colorbars",
23337
23489
  "valType": "enumerated",
23338
23490
  "values": [
@@ -24270,6 +24422,16 @@
24270
24422
  "min": 0,
24271
24423
  "valType": "integer"
24272
24424
  },
24425
+ "orientation": {
24426
+ "description": "Sets the orientation of the colorbar.",
24427
+ "dflt": "v",
24428
+ "editType": "colorbars",
24429
+ "valType": "enumerated",
24430
+ "values": [
24431
+ "h",
24432
+ "v"
24433
+ ]
24434
+ },
24273
24435
  "outlinecolor": {
24274
24436
  "description": "Sets the axis line color.",
24275
24437
  "dflt": "#444",
@@ -24453,7 +24615,7 @@
24453
24615
  ]
24454
24616
  },
24455
24617
  "ticklabelposition": {
24456
- "description": "Determines where tick labels are drawn.",
24618
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
24457
24619
  "dflt": "outside",
24458
24620
  "editType": "colorbars",
24459
24621
  "valType": "enumerated",
@@ -24462,6 +24624,10 @@
24462
24624
  "inside",
24463
24625
  "outside top",
24464
24626
  "inside top",
24627
+ "outside left",
24628
+ "inside left",
24629
+ "outside right",
24630
+ "inside right",
24465
24631
  "outside bottom",
24466
24632
  "inside bottom"
24467
24633
  ]
@@ -24559,8 +24725,7 @@
24559
24725
  },
24560
24726
  "role": "object",
24561
24727
  "side": {
24562
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
24563
- "dflt": "top",
24728
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
24564
24729
  "editType": "colorbars",
24565
24730
  "valType": "enumerated",
24566
24731
  "values": [
@@ -24576,16 +24741,14 @@
24576
24741
  }
24577
24742
  },
24578
24743
  "x": {
24579
- "description": "Sets the x position of the color bar (in plot fraction).",
24580
- "dflt": 1.02,
24744
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
24581
24745
  "editType": "colorbars",
24582
24746
  "max": 3,
24583
24747
  "min": -2,
24584
24748
  "valType": "number"
24585
24749
  },
24586
24750
  "xanchor": {
24587
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
24588
- "dflt": "left",
24751
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
24589
24752
  "editType": "colorbars",
24590
24753
  "valType": "enumerated",
24591
24754
  "values": [
@@ -24602,16 +24765,14 @@
24602
24765
  "valType": "number"
24603
24766
  },
24604
24767
  "y": {
24605
- "description": "Sets the y position of the color bar (in plot fraction).",
24606
- "dflt": 0.5,
24768
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
24607
24769
  "editType": "colorbars",
24608
24770
  "max": 3,
24609
24771
  "min": -2,
24610
24772
  "valType": "number"
24611
24773
  },
24612
24774
  "yanchor": {
24613
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
24614
- "dflt": "middle",
24775
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
24615
24776
  "editType": "colorbars",
24616
24777
  "valType": "enumerated",
24617
24778
  "values": [
@@ -25964,6 +26125,16 @@
25964
26125
  "min": 0,
25965
26126
  "valType": "integer"
25966
26127
  },
26128
+ "orientation": {
26129
+ "description": "Sets the orientation of the colorbar.",
26130
+ "dflt": "v",
26131
+ "editType": "colorbars",
26132
+ "valType": "enumerated",
26133
+ "values": [
26134
+ "h",
26135
+ "v"
26136
+ ]
26137
+ },
25967
26138
  "outlinecolor": {
25968
26139
  "description": "Sets the axis line color.",
25969
26140
  "dflt": "#444",
@@ -26147,7 +26318,7 @@
26147
26318
  ]
26148
26319
  },
26149
26320
  "ticklabelposition": {
26150
- "description": "Determines where tick labels are drawn.",
26321
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
26151
26322
  "dflt": "outside",
26152
26323
  "editType": "colorbars",
26153
26324
  "valType": "enumerated",
@@ -26156,6 +26327,10 @@
26156
26327
  "inside",
26157
26328
  "outside top",
26158
26329
  "inside top",
26330
+ "outside left",
26331
+ "inside left",
26332
+ "outside right",
26333
+ "inside right",
26159
26334
  "outside bottom",
26160
26335
  "inside bottom"
26161
26336
  ]
@@ -26253,8 +26428,7 @@
26253
26428
  },
26254
26429
  "role": "object",
26255
26430
  "side": {
26256
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
26257
- "dflt": "top",
26431
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
26258
26432
  "editType": "colorbars",
26259
26433
  "valType": "enumerated",
26260
26434
  "values": [
@@ -26270,16 +26444,14 @@
26270
26444
  }
26271
26445
  },
26272
26446
  "x": {
26273
- "description": "Sets the x position of the color bar (in plot fraction).",
26274
- "dflt": 1.02,
26447
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
26275
26448
  "editType": "colorbars",
26276
26449
  "max": 3,
26277
26450
  "min": -2,
26278
26451
  "valType": "number"
26279
26452
  },
26280
26453
  "xanchor": {
26281
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
26282
- "dflt": "left",
26454
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
26283
26455
  "editType": "colorbars",
26284
26456
  "valType": "enumerated",
26285
26457
  "values": [
@@ -26296,16 +26468,14 @@
26296
26468
  "valType": "number"
26297
26469
  },
26298
26470
  "y": {
26299
- "description": "Sets the y position of the color bar (in plot fraction).",
26300
- "dflt": 0.5,
26471
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
26301
26472
  "editType": "colorbars",
26302
26473
  "max": 3,
26303
26474
  "min": -2,
26304
26475
  "valType": "number"
26305
26476
  },
26306
26477
  "yanchor": {
26307
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
26308
- "dflt": "middle",
26478
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
26309
26479
  "editType": "colorbars",
26310
26480
  "valType": "enumerated",
26311
26481
  "values": [
@@ -26630,11 +26800,40 @@
26630
26800
  "editType": "calc",
26631
26801
  "valType": "data_array"
26632
26802
  },
26803
+ "textfont": {
26804
+ "color": {
26805
+ "dflt": "auto",
26806
+ "editType": "style",
26807
+ "valType": "color"
26808
+ },
26809
+ "description": "Sets the text font.",
26810
+ "editType": "plot",
26811
+ "family": {
26812
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
26813
+ "editType": "plot",
26814
+ "noBlank": true,
26815
+ "strict": true,
26816
+ "valType": "string"
26817
+ },
26818
+ "role": "object",
26819
+ "size": {
26820
+ "dflt": "auto",
26821
+ "editType": "plot",
26822
+ "min": 1,
26823
+ "valType": "number"
26824
+ }
26825
+ },
26633
26826
  "textsrc": {
26634
26827
  "description": "Sets the source reference on Chart Studio Cloud for `text`.",
26635
26828
  "editType": "none",
26636
26829
  "valType": "string"
26637
26830
  },
26831
+ "texttemplate": {
26832
+ "description": "Template string used for rendering the information text that appear on points. Note that this will override `textinfo`. Variables are inserted using %{variable}, for example \"y: %{y}\". Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. Every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available. variables `x`, `y`, `z` and `text`.",
26833
+ "dflt": "",
26834
+ "editType": "plot",
26835
+ "valType": "string"
26836
+ },
26638
26837
  "transforms": {
26639
26838
  "items": {
26640
26839
  "transform": {
@@ -27083,6 +27282,16 @@
27083
27282
  "min": 0,
27084
27283
  "valType": "integer"
27085
27284
  },
27285
+ "orientation": {
27286
+ "description": "Sets the orientation of the colorbar.",
27287
+ "dflt": "v",
27288
+ "editType": "calc",
27289
+ "valType": "enumerated",
27290
+ "values": [
27291
+ "h",
27292
+ "v"
27293
+ ]
27294
+ },
27086
27295
  "outlinecolor": {
27087
27296
  "description": "Sets the axis line color.",
27088
27297
  "dflt": "#444",
@@ -27266,7 +27475,7 @@
27266
27475
  ]
27267
27476
  },
27268
27477
  "ticklabelposition": {
27269
- "description": "Determines where tick labels are drawn.",
27478
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
27270
27479
  "dflt": "outside",
27271
27480
  "editType": "calc",
27272
27481
  "valType": "enumerated",
@@ -27275,6 +27484,10 @@
27275
27484
  "inside",
27276
27485
  "outside top",
27277
27486
  "inside top",
27487
+ "outside left",
27488
+ "inside left",
27489
+ "outside right",
27490
+ "inside right",
27278
27491
  "outside bottom",
27279
27492
  "inside bottom"
27280
27493
  ]
@@ -27372,8 +27585,7 @@
27372
27585
  },
27373
27586
  "role": "object",
27374
27587
  "side": {
27375
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
27376
- "dflt": "top",
27588
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
27377
27589
  "editType": "calc",
27378
27590
  "valType": "enumerated",
27379
27591
  "values": [
@@ -27389,16 +27601,14 @@
27389
27601
  }
27390
27602
  },
27391
27603
  "x": {
27392
- "description": "Sets the x position of the color bar (in plot fraction).",
27393
- "dflt": 1.02,
27604
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
27394
27605
  "editType": "calc",
27395
27606
  "max": 3,
27396
27607
  "min": -2,
27397
27608
  "valType": "number"
27398
27609
  },
27399
27610
  "xanchor": {
27400
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
27401
- "dflt": "left",
27611
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
27402
27612
  "editType": "calc",
27403
27613
  "valType": "enumerated",
27404
27614
  "values": [
@@ -27415,16 +27625,14 @@
27415
27625
  "valType": "number"
27416
27626
  },
27417
27627
  "y": {
27418
- "description": "Sets the y position of the color bar (in plot fraction).",
27419
- "dflt": 0.5,
27628
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
27420
27629
  "editType": "calc",
27421
27630
  "max": 3,
27422
27631
  "min": -2,
27423
27632
  "valType": "number"
27424
27633
  },
27425
27634
  "yanchor": {
27426
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
27427
- "dflt": "middle",
27635
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
27428
27636
  "editType": "calc",
27429
27637
  "valType": "enumerated",
27430
27638
  "values": [
@@ -28596,6 +28804,16 @@
28596
28804
  "min": 0,
28597
28805
  "valType": "integer"
28598
28806
  },
28807
+ "orientation": {
28808
+ "description": "Sets the orientation of the colorbar.",
28809
+ "dflt": "v",
28810
+ "editType": "colorbars",
28811
+ "valType": "enumerated",
28812
+ "values": [
28813
+ "h",
28814
+ "v"
28815
+ ]
28816
+ },
28599
28817
  "outlinecolor": {
28600
28818
  "description": "Sets the axis line color.",
28601
28819
  "dflt": "#444",
@@ -28779,7 +28997,7 @@
28779
28997
  ]
28780
28998
  },
28781
28999
  "ticklabelposition": {
28782
- "description": "Determines where tick labels are drawn.",
29000
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
28783
29001
  "dflt": "outside",
28784
29002
  "editType": "colorbars",
28785
29003
  "valType": "enumerated",
@@ -28788,6 +29006,10 @@
28788
29006
  "inside",
28789
29007
  "outside top",
28790
29008
  "inside top",
29009
+ "outside left",
29010
+ "inside left",
29011
+ "outside right",
29012
+ "inside right",
28791
29013
  "outside bottom",
28792
29014
  "inside bottom"
28793
29015
  ]
@@ -28885,8 +29107,7 @@
28885
29107
  },
28886
29108
  "role": "object",
28887
29109
  "side": {
28888
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
28889
- "dflt": "top",
29110
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
28890
29111
  "editType": "colorbars",
28891
29112
  "valType": "enumerated",
28892
29113
  "values": [
@@ -28902,16 +29123,14 @@
28902
29123
  }
28903
29124
  },
28904
29125
  "x": {
28905
- "description": "Sets the x position of the color bar (in plot fraction).",
28906
- "dflt": 1.02,
29126
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
28907
29127
  "editType": "colorbars",
28908
29128
  "max": 3,
28909
29129
  "min": -2,
28910
29130
  "valType": "number"
28911
29131
  },
28912
29132
  "xanchor": {
28913
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
28914
- "dflt": "left",
29133
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
28915
29134
  "editType": "colorbars",
28916
29135
  "valType": "enumerated",
28917
29136
  "values": [
@@ -28928,16 +29147,14 @@
28928
29147
  "valType": "number"
28929
29148
  },
28930
29149
  "y": {
28931
- "description": "Sets the y position of the color bar (in plot fraction).",
28932
- "dflt": 0.5,
29150
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
28933
29151
  "editType": "colorbars",
28934
29152
  "max": 3,
28935
29153
  "min": -2,
28936
29154
  "valType": "number"
28937
29155
  },
28938
29156
  "yanchor": {
28939
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
28940
- "dflt": "middle",
29157
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
28941
29158
  "editType": "colorbars",
28942
29159
  "valType": "enumerated",
28943
29160
  "values": [
@@ -29764,6 +29981,16 @@
29764
29981
  "min": 0,
29765
29982
  "valType": "integer"
29766
29983
  },
29984
+ "orientation": {
29985
+ "description": "Sets the orientation of the colorbar.",
29986
+ "dflt": "v",
29987
+ "editType": "colorbars",
29988
+ "valType": "enumerated",
29989
+ "values": [
29990
+ "h",
29991
+ "v"
29992
+ ]
29993
+ },
29767
29994
  "outlinecolor": {
29768
29995
  "description": "Sets the axis line color.",
29769
29996
  "dflt": "#444",
@@ -29947,7 +30174,7 @@
29947
30174
  ]
29948
30175
  },
29949
30176
  "ticklabelposition": {
29950
- "description": "Determines where tick labels are drawn.",
30177
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
29951
30178
  "dflt": "outside",
29952
30179
  "editType": "colorbars",
29953
30180
  "valType": "enumerated",
@@ -29956,6 +30183,10 @@
29956
30183
  "inside",
29957
30184
  "outside top",
29958
30185
  "inside top",
30186
+ "outside left",
30187
+ "inside left",
30188
+ "outside right",
30189
+ "inside right",
29959
30190
  "outside bottom",
29960
30191
  "inside bottom"
29961
30192
  ]
@@ -30053,8 +30284,7 @@
30053
30284
  },
30054
30285
  "role": "object",
30055
30286
  "side": {
30056
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
30057
- "dflt": "top",
30287
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
30058
30288
  "editType": "colorbars",
30059
30289
  "valType": "enumerated",
30060
30290
  "values": [
@@ -30070,16 +30300,14 @@
30070
30300
  }
30071
30301
  },
30072
30302
  "x": {
30073
- "description": "Sets the x position of the color bar (in plot fraction).",
30074
- "dflt": 1.02,
30303
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
30075
30304
  "editType": "colorbars",
30076
30305
  "max": 3,
30077
30306
  "min": -2,
30078
30307
  "valType": "number"
30079
30308
  },
30080
30309
  "xanchor": {
30081
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
30082
- "dflt": "left",
30310
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
30083
30311
  "editType": "colorbars",
30084
30312
  "valType": "enumerated",
30085
30313
  "values": [
@@ -30096,16 +30324,14 @@
30096
30324
  "valType": "number"
30097
30325
  },
30098
30326
  "y": {
30099
- "description": "Sets the y position of the color bar (in plot fraction).",
30100
- "dflt": 0.5,
30327
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
30101
30328
  "editType": "colorbars",
30102
30329
  "max": 3,
30103
30330
  "min": -2,
30104
30331
  "valType": "number"
30105
30332
  },
30106
30333
  "yanchor": {
30107
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
30108
- "dflt": "middle",
30334
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
30109
30335
  "editType": "colorbars",
30110
30336
  "valType": "enumerated",
30111
30337
  "values": [
@@ -30440,6 +30666,35 @@
30440
30666
  "valType": "string"
30441
30667
  }
30442
30668
  },
30669
+ "textfont": {
30670
+ "color": {
30671
+ "dflt": "auto",
30672
+ "editType": "style",
30673
+ "valType": "color"
30674
+ },
30675
+ "description": "Sets the text font.",
30676
+ "editType": "plot",
30677
+ "family": {
30678
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
30679
+ "editType": "plot",
30680
+ "noBlank": true,
30681
+ "strict": true,
30682
+ "valType": "string"
30683
+ },
30684
+ "role": "object",
30685
+ "size": {
30686
+ "dflt": "auto",
30687
+ "editType": "plot",
30688
+ "min": 1,
30689
+ "valType": "number"
30690
+ }
30691
+ },
30692
+ "texttemplate": {
30693
+ "description": "Template string used for rendering the information text that appear on points. Note that this will override `textinfo`. Variables are inserted using %{variable}, for example \"y: %{y}\". Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. Every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available. variable `z`",
30694
+ "dflt": "",
30695
+ "editType": "plot",
30696
+ "valType": "string"
30697
+ },
30443
30698
  "transforms": {
30444
30699
  "items": {
30445
30700
  "transform": {
@@ -30855,6 +31110,16 @@
30855
31110
  "min": 0,
30856
31111
  "valType": "integer"
30857
31112
  },
31113
+ "orientation": {
31114
+ "description": "Sets the orientation of the colorbar.",
31115
+ "dflt": "v",
31116
+ "editType": "colorbars",
31117
+ "valType": "enumerated",
31118
+ "values": [
31119
+ "h",
31120
+ "v"
31121
+ ]
31122
+ },
30858
31123
  "outlinecolor": {
30859
31124
  "description": "Sets the axis line color.",
30860
31125
  "dflt": "#444",
@@ -31038,7 +31303,7 @@
31038
31303
  ]
31039
31304
  },
31040
31305
  "ticklabelposition": {
31041
- "description": "Determines where tick labels are drawn.",
31306
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
31042
31307
  "dflt": "outside",
31043
31308
  "editType": "colorbars",
31044
31309
  "valType": "enumerated",
@@ -31047,6 +31312,10 @@
31047
31312
  "inside",
31048
31313
  "outside top",
31049
31314
  "inside top",
31315
+ "outside left",
31316
+ "inside left",
31317
+ "outside right",
31318
+ "inside right",
31050
31319
  "outside bottom",
31051
31320
  "inside bottom"
31052
31321
  ]
@@ -31144,8 +31413,7 @@
31144
31413
  },
31145
31414
  "role": "object",
31146
31415
  "side": {
31147
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
31148
- "dflt": "top",
31416
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
31149
31417
  "editType": "colorbars",
31150
31418
  "valType": "enumerated",
31151
31419
  "values": [
@@ -31161,16 +31429,14 @@
31161
31429
  }
31162
31430
  },
31163
31431
  "x": {
31164
- "description": "Sets the x position of the color bar (in plot fraction).",
31165
- "dflt": 1.02,
31432
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
31166
31433
  "editType": "colorbars",
31167
31434
  "max": 3,
31168
31435
  "min": -2,
31169
31436
  "valType": "number"
31170
31437
  },
31171
31438
  "xanchor": {
31172
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
31173
- "dflt": "left",
31439
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
31174
31440
  "editType": "colorbars",
31175
31441
  "valType": "enumerated",
31176
31442
  "values": [
@@ -31187,16 +31453,14 @@
31187
31453
  "valType": "number"
31188
31454
  },
31189
31455
  "y": {
31190
- "description": "Sets the y position of the color bar (in plot fraction).",
31191
- "dflt": 0.5,
31456
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
31192
31457
  "editType": "colorbars",
31193
31458
  "max": 3,
31194
31459
  "min": -2,
31195
31460
  "valType": "number"
31196
31461
  },
31197
31462
  "yanchor": {
31198
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
31199
- "dflt": "middle",
31463
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
31200
31464
  "editType": "colorbars",
31201
31465
  "valType": "enumerated",
31202
31466
  "values": [
@@ -31700,6 +31964,35 @@
31700
31964
  "valType": "string"
31701
31965
  }
31702
31966
  },
31967
+ "textfont": {
31968
+ "color": {
31969
+ "dflt": "auto",
31970
+ "editType": "style",
31971
+ "valType": "color"
31972
+ },
31973
+ "description": "For this trace it only has an effect if `coloring` is set to *heatmap*. Sets the text font.",
31974
+ "editType": "plot",
31975
+ "family": {
31976
+ "description": "HTML font family - the typeface that will be applied by the web browser. The web browser will only be able to apply a font if it is available on the system which it operates. Provide multiple font families, separated by commas, to indicate the preference in which to apply fonts if they aren't available on the system. The Chart Studio Cloud (at https://chart-studio.plotly.com or on-premise) generates images on a server, where only a select number of fonts are installed and supported. These include *Arial*, *Balto*, *Courier New*, *Droid Sans*,, *Droid Serif*, *Droid Sans Mono*, *Gravitas One*, *Old Standard TT*, *Open Sans*, *Overpass*, *PT Sans Narrow*, *Raleway*, *Times New Roman*.",
31977
+ "editType": "plot",
31978
+ "noBlank": true,
31979
+ "strict": true,
31980
+ "valType": "string"
31981
+ },
31982
+ "role": "object",
31983
+ "size": {
31984
+ "dflt": "auto",
31985
+ "editType": "plot",
31986
+ "min": 1,
31987
+ "valType": "number"
31988
+ }
31989
+ },
31990
+ "texttemplate": {
31991
+ "description": "For this trace it only has an effect if `coloring` is set to *heatmap*. Template string used for rendering the information text that appear on points. Note that this will override `textinfo`. Variables are inserted using %{variable}, for example \"y: %{y}\". Numbers are formatted using d3-format's syntax %{variable:d3-format}, for example \"Price: %{y:$.2f}\". https://github.com/d3/d3-format/tree/v1.4.5#d3-format for details on the formatting syntax. Dates are formatted using d3-time-format's syntax %{variable|d3-time-format}, for example \"Day: %{2019-01-01|%A}\". https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format for details on the date formatting syntax. Every attributes that can be specified per-point (the ones that are `arrayOk: true`) are available. variables `x`, `y`, `z` and `text`.",
31992
+ "dflt": "",
31993
+ "editType": "plot",
31994
+ "valType": "string"
31995
+ },
31703
31996
  "transforms": {
31704
31997
  "items": {
31705
31998
  "transform": {
@@ -32453,6 +32746,16 @@
32453
32746
  "min": 0,
32454
32747
  "valType": "integer"
32455
32748
  },
32749
+ "orientation": {
32750
+ "description": "Sets the orientation of the colorbar.",
32751
+ "dflt": "v",
32752
+ "editType": "colorbars",
32753
+ "valType": "enumerated",
32754
+ "values": [
32755
+ "h",
32756
+ "v"
32757
+ ]
32758
+ },
32456
32759
  "outlinecolor": {
32457
32760
  "description": "Sets the axis line color.",
32458
32761
  "dflt": "#444",
@@ -32636,7 +32939,7 @@
32636
32939
  ]
32637
32940
  },
32638
32941
  "ticklabelposition": {
32639
- "description": "Determines where tick labels are drawn.",
32942
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
32640
32943
  "dflt": "outside",
32641
32944
  "editType": "colorbars",
32642
32945
  "valType": "enumerated",
@@ -32645,6 +32948,10 @@
32645
32948
  "inside",
32646
32949
  "outside top",
32647
32950
  "inside top",
32951
+ "outside left",
32952
+ "inside left",
32953
+ "outside right",
32954
+ "inside right",
32648
32955
  "outside bottom",
32649
32956
  "inside bottom"
32650
32957
  ]
@@ -32742,8 +33049,7 @@
32742
33049
  },
32743
33050
  "role": "object",
32744
33051
  "side": {
32745
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
32746
- "dflt": "top",
33052
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
32747
33053
  "editType": "colorbars",
32748
33054
  "valType": "enumerated",
32749
33055
  "values": [
@@ -32759,16 +33065,14 @@
32759
33065
  }
32760
33066
  },
32761
33067
  "x": {
32762
- "description": "Sets the x position of the color bar (in plot fraction).",
32763
- "dflt": 1.02,
33068
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
32764
33069
  "editType": "colorbars",
32765
33070
  "max": 3,
32766
33071
  "min": -2,
32767
33072
  "valType": "number"
32768
33073
  },
32769
33074
  "xanchor": {
32770
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
32771
- "dflt": "left",
33075
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
32772
33076
  "editType": "colorbars",
32773
33077
  "valType": "enumerated",
32774
33078
  "values": [
@@ -32785,16 +33089,14 @@
32785
33089
  "valType": "number"
32786
33090
  },
32787
33091
  "y": {
32788
- "description": "Sets the y position of the color bar (in plot fraction).",
32789
- "dflt": 0.5,
33092
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
32790
33093
  "editType": "colorbars",
32791
33094
  "max": 3,
32792
33095
  "min": -2,
32793
33096
  "valType": "number"
32794
33097
  },
32795
33098
  "yanchor": {
32796
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
32797
- "dflt": "middle",
33099
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
32798
33100
  "editType": "colorbars",
32799
33101
  "valType": "enumerated",
32800
33102
  "values": [
@@ -34719,6 +35021,16 @@
34719
35021
  "min": 0,
34720
35022
  "valType": "integer"
34721
35023
  },
35024
+ "orientation": {
35025
+ "description": "Sets the orientation of the colorbar.",
35026
+ "dflt": "v",
35027
+ "editType": "calc",
35028
+ "valType": "enumerated",
35029
+ "values": [
35030
+ "h",
35031
+ "v"
35032
+ ]
35033
+ },
34722
35034
  "outlinecolor": {
34723
35035
  "description": "Sets the axis line color.",
34724
35036
  "dflt": "#444",
@@ -34902,7 +35214,7 @@
34902
35214
  ]
34903
35215
  },
34904
35216
  "ticklabelposition": {
34905
- "description": "Determines where tick labels are drawn.",
35217
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
34906
35218
  "dflt": "outside",
34907
35219
  "editType": "calc",
34908
35220
  "valType": "enumerated",
@@ -34911,6 +35223,10 @@
34911
35223
  "inside",
34912
35224
  "outside top",
34913
35225
  "inside top",
35226
+ "outside left",
35227
+ "inside left",
35228
+ "outside right",
35229
+ "inside right",
34914
35230
  "outside bottom",
34915
35231
  "inside bottom"
34916
35232
  ]
@@ -35008,8 +35324,7 @@
35008
35324
  },
35009
35325
  "role": "object",
35010
35326
  "side": {
35011
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
35012
- "dflt": "top",
35327
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
35013
35328
  "editType": "calc",
35014
35329
  "valType": "enumerated",
35015
35330
  "values": [
@@ -35025,16 +35340,14 @@
35025
35340
  }
35026
35341
  },
35027
35342
  "x": {
35028
- "description": "Sets the x position of the color bar (in plot fraction).",
35029
- "dflt": 1.02,
35343
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
35030
35344
  "editType": "calc",
35031
35345
  "max": 3,
35032
35346
  "min": -2,
35033
35347
  "valType": "number"
35034
35348
  },
35035
35349
  "xanchor": {
35036
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
35037
- "dflt": "left",
35350
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
35038
35351
  "editType": "calc",
35039
35352
  "valType": "enumerated",
35040
35353
  "values": [
@@ -35051,16 +35364,14 @@
35051
35364
  "valType": "number"
35052
35365
  },
35053
35366
  "y": {
35054
- "description": "Sets the y position of the color bar (in plot fraction).",
35055
- "dflt": 0.5,
35367
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
35056
35368
  "editType": "calc",
35057
35369
  "max": 3,
35058
35370
  "min": -2,
35059
35371
  "valType": "number"
35060
35372
  },
35061
35373
  "yanchor": {
35062
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
35063
- "dflt": "middle",
35374
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
35064
35375
  "editType": "calc",
35065
35376
  "valType": "enumerated",
35066
35377
  "values": [
@@ -35919,6 +36230,16 @@
35919
36230
  "min": 0,
35920
36231
  "valType": "integer"
35921
36232
  },
36233
+ "orientation": {
36234
+ "description": "Sets the orientation of the colorbar.",
36235
+ "dflt": "v",
36236
+ "editType": "colorbars",
36237
+ "valType": "enumerated",
36238
+ "values": [
36239
+ "h",
36240
+ "v"
36241
+ ]
36242
+ },
35922
36243
  "outlinecolor": {
35923
36244
  "description": "Sets the axis line color.",
35924
36245
  "dflt": "#444",
@@ -36102,7 +36423,7 @@
36102
36423
  ]
36103
36424
  },
36104
36425
  "ticklabelposition": {
36105
- "description": "Determines where tick labels are drawn.",
36426
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
36106
36427
  "dflt": "outside",
36107
36428
  "editType": "colorbars",
36108
36429
  "valType": "enumerated",
@@ -36111,6 +36432,10 @@
36111
36432
  "inside",
36112
36433
  "outside top",
36113
36434
  "inside top",
36435
+ "outside left",
36436
+ "inside left",
36437
+ "outside right",
36438
+ "inside right",
36114
36439
  "outside bottom",
36115
36440
  "inside bottom"
36116
36441
  ]
@@ -36208,8 +36533,7 @@
36208
36533
  },
36209
36534
  "role": "object",
36210
36535
  "side": {
36211
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
36212
- "dflt": "top",
36536
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
36213
36537
  "editType": "colorbars",
36214
36538
  "valType": "enumerated",
36215
36539
  "values": [
@@ -36225,16 +36549,14 @@
36225
36549
  }
36226
36550
  },
36227
36551
  "x": {
36228
- "description": "Sets the x position of the color bar (in plot fraction).",
36229
- "dflt": 1.02,
36552
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
36230
36553
  "editType": "colorbars",
36231
36554
  "max": 3,
36232
36555
  "min": -2,
36233
36556
  "valType": "number"
36234
36557
  },
36235
36558
  "xanchor": {
36236
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
36237
- "dflt": "left",
36559
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
36238
36560
  "editType": "colorbars",
36239
36561
  "valType": "enumerated",
36240
36562
  "values": [
@@ -36251,16 +36573,14 @@
36251
36573
  "valType": "number"
36252
36574
  },
36253
36575
  "y": {
36254
- "description": "Sets the y position of the color bar (in plot fraction).",
36255
- "dflt": 0.5,
36576
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
36256
36577
  "editType": "colorbars",
36257
36578
  "max": 3,
36258
36579
  "min": -2,
36259
36580
  "valType": "number"
36260
36581
  },
36261
36582
  "yanchor": {
36262
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
36263
- "dflt": "middle",
36583
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
36264
36584
  "editType": "colorbars",
36265
36585
  "valType": "enumerated",
36266
36586
  "values": [
@@ -37873,6 +38193,16 @@
37873
38193
  "min": 0,
37874
38194
  "valType": "integer"
37875
38195
  },
38196
+ "orientation": {
38197
+ "description": "Sets the orientation of the colorbar.",
38198
+ "dflt": "v",
38199
+ "editType": "colorbars",
38200
+ "valType": "enumerated",
38201
+ "values": [
38202
+ "h",
38203
+ "v"
38204
+ ]
38205
+ },
37876
38206
  "outlinecolor": {
37877
38207
  "description": "Sets the axis line color.",
37878
38208
  "dflt": "#444",
@@ -38056,7 +38386,7 @@
38056
38386
  ]
38057
38387
  },
38058
38388
  "ticklabelposition": {
38059
- "description": "Determines where tick labels are drawn.",
38389
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
38060
38390
  "dflt": "outside",
38061
38391
  "editType": "colorbars",
38062
38392
  "valType": "enumerated",
@@ -38065,6 +38395,10 @@
38065
38395
  "inside",
38066
38396
  "outside top",
38067
38397
  "inside top",
38398
+ "outside left",
38399
+ "inside left",
38400
+ "outside right",
38401
+ "inside right",
38068
38402
  "outside bottom",
38069
38403
  "inside bottom"
38070
38404
  ]
@@ -38162,8 +38496,7 @@
38162
38496
  },
38163
38497
  "role": "object",
38164
38498
  "side": {
38165
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
38166
- "dflt": "top",
38499
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
38167
38500
  "editType": "colorbars",
38168
38501
  "valType": "enumerated",
38169
38502
  "values": [
@@ -38179,16 +38512,14 @@
38179
38512
  }
38180
38513
  },
38181
38514
  "x": {
38182
- "description": "Sets the x position of the color bar (in plot fraction).",
38183
- "dflt": 1.02,
38515
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
38184
38516
  "editType": "colorbars",
38185
38517
  "max": 3,
38186
38518
  "min": -2,
38187
38519
  "valType": "number"
38188
38520
  },
38189
38521
  "xanchor": {
38190
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
38191
- "dflt": "left",
38522
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
38192
38523
  "editType": "colorbars",
38193
38524
  "valType": "enumerated",
38194
38525
  "values": [
@@ -38205,16 +38536,14 @@
38205
38536
  "valType": "number"
38206
38537
  },
38207
38538
  "y": {
38208
- "description": "Sets the y position of the color bar (in plot fraction).",
38209
- "dflt": 0.5,
38539
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
38210
38540
  "editType": "colorbars",
38211
38541
  "max": 3,
38212
38542
  "min": -2,
38213
38543
  "valType": "number"
38214
38544
  },
38215
38545
  "yanchor": {
38216
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
38217
- "dflt": "middle",
38546
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
38218
38547
  "editType": "colorbars",
38219
38548
  "valType": "enumerated",
38220
38549
  "values": [
@@ -38814,6 +39143,16 @@
38814
39143
  "min": 0,
38815
39144
  "valType": "integer"
38816
39145
  },
39146
+ "orientation": {
39147
+ "description": "Sets the orientation of the colorbar.",
39148
+ "dflt": "v",
39149
+ "editType": "colorbars",
39150
+ "valType": "enumerated",
39151
+ "values": [
39152
+ "h",
39153
+ "v"
39154
+ ]
39155
+ },
38817
39156
  "outlinecolor": {
38818
39157
  "description": "Sets the axis line color.",
38819
39158
  "dflt": "#444",
@@ -38997,7 +39336,7 @@
38997
39336
  ]
38998
39337
  },
38999
39338
  "ticklabelposition": {
39000
- "description": "Determines where tick labels are drawn.",
39339
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
39001
39340
  "dflt": "outside",
39002
39341
  "editType": "colorbars",
39003
39342
  "valType": "enumerated",
@@ -39006,6 +39345,10 @@
39006
39345
  "inside",
39007
39346
  "outside top",
39008
39347
  "inside top",
39348
+ "outside left",
39349
+ "inside left",
39350
+ "outside right",
39351
+ "inside right",
39009
39352
  "outside bottom",
39010
39353
  "inside bottom"
39011
39354
  ]
@@ -39103,8 +39446,7 @@
39103
39446
  },
39104
39447
  "role": "object",
39105
39448
  "side": {
39106
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
39107
- "dflt": "top",
39449
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
39108
39450
  "editType": "colorbars",
39109
39451
  "valType": "enumerated",
39110
39452
  "values": [
@@ -39120,16 +39462,14 @@
39120
39462
  }
39121
39463
  },
39122
39464
  "x": {
39123
- "description": "Sets the x position of the color bar (in plot fraction).",
39124
- "dflt": 1.02,
39465
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
39125
39466
  "editType": "colorbars",
39126
39467
  "max": 3,
39127
39468
  "min": -2,
39128
39469
  "valType": "number"
39129
39470
  },
39130
39471
  "xanchor": {
39131
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
39132
- "dflt": "left",
39472
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
39133
39473
  "editType": "colorbars",
39134
39474
  "valType": "enumerated",
39135
39475
  "values": [
@@ -39146,16 +39486,14 @@
39146
39486
  "valType": "number"
39147
39487
  },
39148
39488
  "y": {
39149
- "description": "Sets the y position of the color bar (in plot fraction).",
39150
- "dflt": 0.5,
39489
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
39151
39490
  "editType": "colorbars",
39152
39491
  "max": 3,
39153
39492
  "min": -2,
39154
39493
  "valType": "number"
39155
39494
  },
39156
39495
  "yanchor": {
39157
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
39158
- "dflt": "middle",
39496
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
39159
39497
  "editType": "colorbars",
39160
39498
  "valType": "enumerated",
39161
39499
  "values": [
@@ -42178,6 +42516,16 @@
42178
42516
  "min": 0,
42179
42517
  "valType": "integer"
42180
42518
  },
42519
+ "orientation": {
42520
+ "description": "Sets the orientation of the colorbar.",
42521
+ "dflt": "v",
42522
+ "editType": "colorbars",
42523
+ "valType": "enumerated",
42524
+ "values": [
42525
+ "h",
42526
+ "v"
42527
+ ]
42528
+ },
42181
42529
  "outlinecolor": {
42182
42530
  "description": "Sets the axis line color.",
42183
42531
  "dflt": "#444",
@@ -42361,7 +42709,7 @@
42361
42709
  ]
42362
42710
  },
42363
42711
  "ticklabelposition": {
42364
- "description": "Determines where tick labels are drawn.",
42712
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
42365
42713
  "dflt": "outside",
42366
42714
  "editType": "colorbars",
42367
42715
  "valType": "enumerated",
@@ -42370,6 +42718,10 @@
42370
42718
  "inside",
42371
42719
  "outside top",
42372
42720
  "inside top",
42721
+ "outside left",
42722
+ "inside left",
42723
+ "outside right",
42724
+ "inside right",
42373
42725
  "outside bottom",
42374
42726
  "inside bottom"
42375
42727
  ]
@@ -42467,8 +42819,7 @@
42467
42819
  },
42468
42820
  "role": "object",
42469
42821
  "side": {
42470
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
42471
- "dflt": "top",
42822
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
42472
42823
  "editType": "colorbars",
42473
42824
  "valType": "enumerated",
42474
42825
  "values": [
@@ -42484,16 +42835,14 @@
42484
42835
  }
42485
42836
  },
42486
42837
  "x": {
42487
- "description": "Sets the x position of the color bar (in plot fraction).",
42488
- "dflt": 1.02,
42838
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
42489
42839
  "editType": "colorbars",
42490
42840
  "max": 3,
42491
42841
  "min": -2,
42492
42842
  "valType": "number"
42493
42843
  },
42494
42844
  "xanchor": {
42495
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
42496
- "dflt": "left",
42845
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
42497
42846
  "editType": "colorbars",
42498
42847
  "valType": "enumerated",
42499
42848
  "values": [
@@ -42510,16 +42859,14 @@
42510
42859
  "valType": "number"
42511
42860
  },
42512
42861
  "y": {
42513
- "description": "Sets the y position of the color bar (in plot fraction).",
42514
- "dflt": 0.5,
42862
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
42515
42863
  "editType": "colorbars",
42516
42864
  "max": 3,
42517
42865
  "min": -2,
42518
42866
  "valType": "number"
42519
42867
  },
42520
42868
  "yanchor": {
42521
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
42522
- "dflt": "middle",
42869
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
42523
42870
  "editType": "colorbars",
42524
42871
  "valType": "enumerated",
42525
42872
  "values": [
@@ -44358,6 +44705,16 @@
44358
44705
  "min": 0,
44359
44706
  "valType": "integer"
44360
44707
  },
44708
+ "orientation": {
44709
+ "description": "Sets the orientation of the colorbar.",
44710
+ "dflt": "v",
44711
+ "editType": "calc",
44712
+ "valType": "enumerated",
44713
+ "values": [
44714
+ "h",
44715
+ "v"
44716
+ ]
44717
+ },
44361
44718
  "outlinecolor": {
44362
44719
  "description": "Sets the axis line color.",
44363
44720
  "dflt": "#444",
@@ -44541,7 +44898,7 @@
44541
44898
  ]
44542
44899
  },
44543
44900
  "ticklabelposition": {
44544
- "description": "Determines where tick labels are drawn.",
44901
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
44545
44902
  "dflt": "outside",
44546
44903
  "editType": "calc",
44547
44904
  "valType": "enumerated",
@@ -44550,6 +44907,10 @@
44550
44907
  "inside",
44551
44908
  "outside top",
44552
44909
  "inside top",
44910
+ "outside left",
44911
+ "inside left",
44912
+ "outside right",
44913
+ "inside right",
44553
44914
  "outside bottom",
44554
44915
  "inside bottom"
44555
44916
  ]
@@ -44647,8 +45008,7 @@
44647
45008
  },
44648
45009
  "role": "object",
44649
45010
  "side": {
44650
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
44651
- "dflt": "top",
45011
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
44652
45012
  "editType": "calc",
44653
45013
  "valType": "enumerated",
44654
45014
  "values": [
@@ -44664,16 +45024,14 @@
44664
45024
  }
44665
45025
  },
44666
45026
  "x": {
44667
- "description": "Sets the x position of the color bar (in plot fraction).",
44668
- "dflt": 1.02,
45027
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
44669
45028
  "editType": "calc",
44670
45029
  "max": 3,
44671
45030
  "min": -2,
44672
45031
  "valType": "number"
44673
45032
  },
44674
45033
  "xanchor": {
44675
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
44676
- "dflt": "left",
45034
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
44677
45035
  "editType": "calc",
44678
45036
  "valType": "enumerated",
44679
45037
  "values": [
@@ -44690,16 +45048,14 @@
44690
45048
  "valType": "number"
44691
45049
  },
44692
45050
  "y": {
44693
- "description": "Sets the y position of the color bar (in plot fraction).",
44694
- "dflt": 0.5,
45051
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
44695
45052
  "editType": "calc",
44696
45053
  "max": 3,
44697
45054
  "min": -2,
44698
45055
  "valType": "number"
44699
45056
  },
44700
45057
  "yanchor": {
44701
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
44702
- "dflt": "middle",
45058
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
44703
45059
  "editType": "calc",
44704
45060
  "valType": "enumerated",
44705
45061
  "values": [
@@ -44931,6 +45287,16 @@
44931
45287
  "min": 0,
44932
45288
  "valType": "integer"
44933
45289
  },
45290
+ "orientation": {
45291
+ "description": "Sets the orientation of the colorbar.",
45292
+ "dflt": "v",
45293
+ "editType": "calc",
45294
+ "valType": "enumerated",
45295
+ "values": [
45296
+ "h",
45297
+ "v"
45298
+ ]
45299
+ },
44934
45300
  "outlinecolor": {
44935
45301
  "description": "Sets the axis line color.",
44936
45302
  "dflt": "#444",
@@ -45114,7 +45480,7 @@
45114
45480
  ]
45115
45481
  },
45116
45482
  "ticklabelposition": {
45117
- "description": "Determines where tick labels are drawn.",
45483
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
45118
45484
  "dflt": "outside",
45119
45485
  "editType": "calc",
45120
45486
  "valType": "enumerated",
@@ -45123,6 +45489,10 @@
45123
45489
  "inside",
45124
45490
  "outside top",
45125
45491
  "inside top",
45492
+ "outside left",
45493
+ "inside left",
45494
+ "outside right",
45495
+ "inside right",
45126
45496
  "outside bottom",
45127
45497
  "inside bottom"
45128
45498
  ]
@@ -45220,8 +45590,7 @@
45220
45590
  },
45221
45591
  "role": "object",
45222
45592
  "side": {
45223
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
45224
- "dflt": "top",
45593
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
45225
45594
  "editType": "calc",
45226
45595
  "valType": "enumerated",
45227
45596
  "values": [
@@ -45237,16 +45606,14 @@
45237
45606
  }
45238
45607
  },
45239
45608
  "x": {
45240
- "description": "Sets the x position of the color bar (in plot fraction).",
45241
- "dflt": 1.02,
45609
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
45242
45610
  "editType": "calc",
45243
45611
  "max": 3,
45244
45612
  "min": -2,
45245
45613
  "valType": "number"
45246
45614
  },
45247
45615
  "xanchor": {
45248
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
45249
- "dflt": "left",
45616
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
45250
45617
  "editType": "calc",
45251
45618
  "valType": "enumerated",
45252
45619
  "values": [
@@ -45263,16 +45630,14 @@
45263
45630
  "valType": "number"
45264
45631
  },
45265
45632
  "y": {
45266
- "description": "Sets the y position of the color bar (in plot fraction).",
45267
- "dflt": 0.5,
45633
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
45268
45634
  "editType": "calc",
45269
45635
  "max": 3,
45270
45636
  "min": -2,
45271
45637
  "valType": "number"
45272
45638
  },
45273
45639
  "yanchor": {
45274
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
45275
- "dflt": "middle",
45640
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
45276
45641
  "editType": "calc",
45277
45642
  "valType": "enumerated",
45278
45643
  "values": [
@@ -46357,6 +46722,16 @@
46357
46722
  "min": 0,
46358
46723
  "valType": "integer"
46359
46724
  },
46725
+ "orientation": {
46726
+ "description": "Sets the orientation of the colorbar.",
46727
+ "dflt": "v",
46728
+ "editType": "colorbars",
46729
+ "valType": "enumerated",
46730
+ "values": [
46731
+ "h",
46732
+ "v"
46733
+ ]
46734
+ },
46360
46735
  "outlinecolor": {
46361
46736
  "description": "Sets the axis line color.",
46362
46737
  "dflt": "#444",
@@ -46540,7 +46915,7 @@
46540
46915
  ]
46541
46916
  },
46542
46917
  "ticklabelposition": {
46543
- "description": "Determines where tick labels are drawn.",
46918
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
46544
46919
  "dflt": "outside",
46545
46920
  "editType": "colorbars",
46546
46921
  "valType": "enumerated",
@@ -46549,6 +46924,10 @@
46549
46924
  "inside",
46550
46925
  "outside top",
46551
46926
  "inside top",
46927
+ "outside left",
46928
+ "inside left",
46929
+ "outside right",
46930
+ "inside right",
46552
46931
  "outside bottom",
46553
46932
  "inside bottom"
46554
46933
  ]
@@ -46646,8 +47025,7 @@
46646
47025
  },
46647
47026
  "role": "object",
46648
47027
  "side": {
46649
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
46650
- "dflt": "top",
47028
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
46651
47029
  "editType": "colorbars",
46652
47030
  "valType": "enumerated",
46653
47031
  "values": [
@@ -46663,16 +47041,14 @@
46663
47041
  }
46664
47042
  },
46665
47043
  "x": {
46666
- "description": "Sets the x position of the color bar (in plot fraction).",
46667
- "dflt": 1.02,
47044
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
46668
47045
  "editType": "colorbars",
46669
47046
  "max": 3,
46670
47047
  "min": -2,
46671
47048
  "valType": "number"
46672
47049
  },
46673
47050
  "xanchor": {
46674
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
46675
- "dflt": "left",
47051
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
46676
47052
  "editType": "colorbars",
46677
47053
  "valType": "enumerated",
46678
47054
  "values": [
@@ -46689,16 +47065,14 @@
46689
47065
  "valType": "number"
46690
47066
  },
46691
47067
  "y": {
46692
- "description": "Sets the y position of the color bar (in plot fraction).",
46693
- "dflt": 0.5,
47068
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
46694
47069
  "editType": "colorbars",
46695
47070
  "max": 3,
46696
47071
  "min": -2,
46697
47072
  "valType": "number"
46698
47073
  },
46699
47074
  "yanchor": {
46700
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
46701
- "dflt": "middle",
47075
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
46702
47076
  "editType": "colorbars",
46703
47077
  "valType": "enumerated",
46704
47078
  "values": [
@@ -48176,6 +48550,16 @@
48176
48550
  "min": 0,
48177
48551
  "valType": "integer"
48178
48552
  },
48553
+ "orientation": {
48554
+ "description": "Sets the orientation of the colorbar.",
48555
+ "dflt": "v",
48556
+ "editType": "calc",
48557
+ "valType": "enumerated",
48558
+ "values": [
48559
+ "h",
48560
+ "v"
48561
+ ]
48562
+ },
48179
48563
  "outlinecolor": {
48180
48564
  "description": "Sets the axis line color.",
48181
48565
  "dflt": "#444",
@@ -48359,7 +48743,7 @@
48359
48743
  ]
48360
48744
  },
48361
48745
  "ticklabelposition": {
48362
- "description": "Determines where tick labels are drawn.",
48746
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
48363
48747
  "dflt": "outside",
48364
48748
  "editType": "calc",
48365
48749
  "valType": "enumerated",
@@ -48368,6 +48752,10 @@
48368
48752
  "inside",
48369
48753
  "outside top",
48370
48754
  "inside top",
48755
+ "outside left",
48756
+ "inside left",
48757
+ "outside right",
48758
+ "inside right",
48371
48759
  "outside bottom",
48372
48760
  "inside bottom"
48373
48761
  ]
@@ -48465,8 +48853,7 @@
48465
48853
  },
48466
48854
  "role": "object",
48467
48855
  "side": {
48468
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
48469
- "dflt": "top",
48856
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
48470
48857
  "editType": "calc",
48471
48858
  "valType": "enumerated",
48472
48859
  "values": [
@@ -48482,16 +48869,14 @@
48482
48869
  }
48483
48870
  },
48484
48871
  "x": {
48485
- "description": "Sets the x position of the color bar (in plot fraction).",
48486
- "dflt": 1.02,
48872
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
48487
48873
  "editType": "calc",
48488
48874
  "max": 3,
48489
48875
  "min": -2,
48490
48876
  "valType": "number"
48491
48877
  },
48492
48878
  "xanchor": {
48493
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
48494
- "dflt": "left",
48879
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
48495
48880
  "editType": "calc",
48496
48881
  "valType": "enumerated",
48497
48882
  "values": [
@@ -48508,16 +48893,14 @@
48508
48893
  "valType": "number"
48509
48894
  },
48510
48895
  "y": {
48511
- "description": "Sets the y position of the color bar (in plot fraction).",
48512
- "dflt": 0.5,
48896
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
48513
48897
  "editType": "calc",
48514
48898
  "max": 3,
48515
48899
  "min": -2,
48516
48900
  "valType": "number"
48517
48901
  },
48518
48902
  "yanchor": {
48519
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
48520
- "dflt": "middle",
48903
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
48521
48904
  "editType": "calc",
48522
48905
  "valType": "enumerated",
48523
48906
  "values": [
@@ -50141,6 +50524,16 @@
50141
50524
  "min": 0,
50142
50525
  "valType": "integer"
50143
50526
  },
50527
+ "orientation": {
50528
+ "description": "Sets the orientation of the colorbar.",
50529
+ "dflt": "v",
50530
+ "editType": "calc",
50531
+ "valType": "enumerated",
50532
+ "values": [
50533
+ "h",
50534
+ "v"
50535
+ ]
50536
+ },
50144
50537
  "outlinecolor": {
50145
50538
  "description": "Sets the axis line color.",
50146
50539
  "dflt": "#444",
@@ -50324,7 +50717,7 @@
50324
50717
  ]
50325
50718
  },
50326
50719
  "ticklabelposition": {
50327
- "description": "Determines where tick labels are drawn.",
50720
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
50328
50721
  "dflt": "outside",
50329
50722
  "editType": "calc",
50330
50723
  "valType": "enumerated",
@@ -50333,6 +50726,10 @@
50333
50726
  "inside",
50334
50727
  "outside top",
50335
50728
  "inside top",
50729
+ "outside left",
50730
+ "inside left",
50731
+ "outside right",
50732
+ "inside right",
50336
50733
  "outside bottom",
50337
50734
  "inside bottom"
50338
50735
  ]
@@ -50430,8 +50827,7 @@
50430
50827
  },
50431
50828
  "role": "object",
50432
50829
  "side": {
50433
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
50434
- "dflt": "top",
50830
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
50435
50831
  "editType": "calc",
50436
50832
  "valType": "enumerated",
50437
50833
  "values": [
@@ -50447,16 +50843,14 @@
50447
50843
  }
50448
50844
  },
50449
50845
  "x": {
50450
- "description": "Sets the x position of the color bar (in plot fraction).",
50451
- "dflt": 1.02,
50846
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
50452
50847
  "editType": "calc",
50453
50848
  "max": 3,
50454
50849
  "min": -2,
50455
50850
  "valType": "number"
50456
50851
  },
50457
50852
  "xanchor": {
50458
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
50459
- "dflt": "left",
50853
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
50460
50854
  "editType": "calc",
50461
50855
  "valType": "enumerated",
50462
50856
  "values": [
@@ -50473,16 +50867,14 @@
50473
50867
  "valType": "number"
50474
50868
  },
50475
50869
  "y": {
50476
- "description": "Sets the y position of the color bar (in plot fraction).",
50477
- "dflt": 0.5,
50870
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
50478
50871
  "editType": "calc",
50479
50872
  "max": 3,
50480
50873
  "min": -2,
50481
50874
  "valType": "number"
50482
50875
  },
50483
50876
  "yanchor": {
50484
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
50485
- "dflt": "middle",
50877
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
50486
50878
  "editType": "calc",
50487
50879
  "valType": "enumerated",
50488
50880
  "values": [
@@ -52025,6 +52417,16 @@
52025
52417
  "min": 0,
52026
52418
  "valType": "integer"
52027
52419
  },
52420
+ "orientation": {
52421
+ "description": "Sets the orientation of the colorbar.",
52422
+ "dflt": "v",
52423
+ "editType": "calc",
52424
+ "valType": "enumerated",
52425
+ "values": [
52426
+ "h",
52427
+ "v"
52428
+ ]
52429
+ },
52028
52430
  "outlinecolor": {
52029
52431
  "description": "Sets the axis line color.",
52030
52432
  "dflt": "#444",
@@ -52208,7 +52610,7 @@
52208
52610
  ]
52209
52611
  },
52210
52612
  "ticklabelposition": {
52211
- "description": "Determines where tick labels are drawn.",
52613
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
52212
52614
  "dflt": "outside",
52213
52615
  "editType": "calc",
52214
52616
  "valType": "enumerated",
@@ -52217,6 +52619,10 @@
52217
52619
  "inside",
52218
52620
  "outside top",
52219
52621
  "inside top",
52622
+ "outside left",
52623
+ "inside left",
52624
+ "outside right",
52625
+ "inside right",
52220
52626
  "outside bottom",
52221
52627
  "inside bottom"
52222
52628
  ]
@@ -52314,8 +52720,7 @@
52314
52720
  },
52315
52721
  "role": "object",
52316
52722
  "side": {
52317
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
52318
- "dflt": "top",
52723
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
52319
52724
  "editType": "calc",
52320
52725
  "valType": "enumerated",
52321
52726
  "values": [
@@ -52331,16 +52736,14 @@
52331
52736
  }
52332
52737
  },
52333
52738
  "x": {
52334
- "description": "Sets the x position of the color bar (in plot fraction).",
52335
- "dflt": 1.02,
52739
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
52336
52740
  "editType": "calc",
52337
52741
  "max": 3,
52338
52742
  "min": -2,
52339
52743
  "valType": "number"
52340
52744
  },
52341
52745
  "xanchor": {
52342
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
52343
- "dflt": "left",
52746
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
52344
52747
  "editType": "calc",
52345
52748
  "valType": "enumerated",
52346
52749
  "values": [
@@ -52357,16 +52760,14 @@
52357
52760
  "valType": "number"
52358
52761
  },
52359
52762
  "y": {
52360
- "description": "Sets the y position of the color bar (in plot fraction).",
52361
- "dflt": 0.5,
52763
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
52362
52764
  "editType": "calc",
52363
52765
  "max": 3,
52364
52766
  "min": -2,
52365
52767
  "valType": "number"
52366
52768
  },
52367
52769
  "yanchor": {
52368
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
52369
- "dflt": "middle",
52770
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
52370
52771
  "editType": "calc",
52371
52772
  "valType": "enumerated",
52372
52773
  "values": [
@@ -53178,6 +53579,16 @@
53178
53579
  "min": 0,
53179
53580
  "valType": "integer"
53180
53581
  },
53582
+ "orientation": {
53583
+ "description": "Sets the orientation of the colorbar.",
53584
+ "dflt": "v",
53585
+ "editType": "colorbars",
53586
+ "valType": "enumerated",
53587
+ "values": [
53588
+ "h",
53589
+ "v"
53590
+ ]
53591
+ },
53181
53592
  "outlinecolor": {
53182
53593
  "description": "Sets the axis line color.",
53183
53594
  "dflt": "#444",
@@ -53361,7 +53772,7 @@
53361
53772
  ]
53362
53773
  },
53363
53774
  "ticklabelposition": {
53364
- "description": "Determines where tick labels are drawn.",
53775
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
53365
53776
  "dflt": "outside",
53366
53777
  "editType": "colorbars",
53367
53778
  "valType": "enumerated",
@@ -53370,6 +53781,10 @@
53370
53781
  "inside",
53371
53782
  "outside top",
53372
53783
  "inside top",
53784
+ "outside left",
53785
+ "inside left",
53786
+ "outside right",
53787
+ "inside right",
53373
53788
  "outside bottom",
53374
53789
  "inside bottom"
53375
53790
  ]
@@ -53467,8 +53882,7 @@
53467
53882
  },
53468
53883
  "role": "object",
53469
53884
  "side": {
53470
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
53471
- "dflt": "top",
53885
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
53472
53886
  "editType": "colorbars",
53473
53887
  "valType": "enumerated",
53474
53888
  "values": [
@@ -53484,16 +53898,14 @@
53484
53898
  }
53485
53899
  },
53486
53900
  "x": {
53487
- "description": "Sets the x position of the color bar (in plot fraction).",
53488
- "dflt": 1.02,
53901
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
53489
53902
  "editType": "colorbars",
53490
53903
  "max": 3,
53491
53904
  "min": -2,
53492
53905
  "valType": "number"
53493
53906
  },
53494
53907
  "xanchor": {
53495
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
53496
- "dflt": "left",
53908
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
53497
53909
  "editType": "colorbars",
53498
53910
  "valType": "enumerated",
53499
53911
  "values": [
@@ -53510,16 +53922,14 @@
53510
53922
  "valType": "number"
53511
53923
  },
53512
53924
  "y": {
53513
- "description": "Sets the y position of the color bar (in plot fraction).",
53514
- "dflt": 0.5,
53925
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
53515
53926
  "editType": "colorbars",
53516
53927
  "max": 3,
53517
53928
  "min": -2,
53518
53929
  "valType": "number"
53519
53930
  },
53520
53931
  "yanchor": {
53521
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
53522
- "dflt": "middle",
53932
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
53523
53933
  "editType": "colorbars",
53524
53934
  "valType": "enumerated",
53525
53935
  "values": [
@@ -55000,6 +55410,16 @@
55000
55410
  "min": 0,
55001
55411
  "valType": "integer"
55002
55412
  },
55413
+ "orientation": {
55414
+ "description": "Sets the orientation of the colorbar.",
55415
+ "dflt": "v",
55416
+ "editType": "calc",
55417
+ "valType": "enumerated",
55418
+ "values": [
55419
+ "h",
55420
+ "v"
55421
+ ]
55422
+ },
55003
55423
  "outlinecolor": {
55004
55424
  "description": "Sets the axis line color.",
55005
55425
  "dflt": "#444",
@@ -55183,7 +55603,7 @@
55183
55603
  ]
55184
55604
  },
55185
55605
  "ticklabelposition": {
55186
- "description": "Determines where tick labels are drawn.",
55606
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
55187
55607
  "dflt": "outside",
55188
55608
  "editType": "calc",
55189
55609
  "valType": "enumerated",
@@ -55192,6 +55612,10 @@
55192
55612
  "inside",
55193
55613
  "outside top",
55194
55614
  "inside top",
55615
+ "outside left",
55616
+ "inside left",
55617
+ "outside right",
55618
+ "inside right",
55195
55619
  "outside bottom",
55196
55620
  "inside bottom"
55197
55621
  ]
@@ -55289,8 +55713,7 @@
55289
55713
  },
55290
55714
  "role": "object",
55291
55715
  "side": {
55292
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
55293
- "dflt": "top",
55716
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
55294
55717
  "editType": "calc",
55295
55718
  "valType": "enumerated",
55296
55719
  "values": [
@@ -55306,16 +55729,14 @@
55306
55729
  }
55307
55730
  },
55308
55731
  "x": {
55309
- "description": "Sets the x position of the color bar (in plot fraction).",
55310
- "dflt": 1.02,
55732
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
55311
55733
  "editType": "calc",
55312
55734
  "max": 3,
55313
55735
  "min": -2,
55314
55736
  "valType": "number"
55315
55737
  },
55316
55738
  "xanchor": {
55317
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
55318
- "dflt": "left",
55739
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
55319
55740
  "editType": "calc",
55320
55741
  "valType": "enumerated",
55321
55742
  "values": [
@@ -55332,16 +55753,14 @@
55332
55753
  "valType": "number"
55333
55754
  },
55334
55755
  "y": {
55335
- "description": "Sets the y position of the color bar (in plot fraction).",
55336
- "dflt": 0.5,
55756
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
55337
55757
  "editType": "calc",
55338
55758
  "max": 3,
55339
55759
  "min": -2,
55340
55760
  "valType": "number"
55341
55761
  },
55342
55762
  "yanchor": {
55343
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
55344
- "dflt": "middle",
55763
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
55345
55764
  "editType": "calc",
55346
55765
  "valType": "enumerated",
55347
55766
  "values": [
@@ -56799,6 +57218,16 @@
56799
57218
  "min": 0,
56800
57219
  "valType": "integer"
56801
57220
  },
57221
+ "orientation": {
57222
+ "description": "Sets the orientation of the colorbar.",
57223
+ "dflt": "v",
57224
+ "editType": "colorbars",
57225
+ "valType": "enumerated",
57226
+ "values": [
57227
+ "h",
57228
+ "v"
57229
+ ]
57230
+ },
56802
57231
  "outlinecolor": {
56803
57232
  "description": "Sets the axis line color.",
56804
57233
  "dflt": "#444",
@@ -56982,7 +57411,7 @@
56982
57411
  ]
56983
57412
  },
56984
57413
  "ticklabelposition": {
56985
- "description": "Determines where tick labels are drawn.",
57414
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
56986
57415
  "dflt": "outside",
56987
57416
  "editType": "colorbars",
56988
57417
  "valType": "enumerated",
@@ -56991,6 +57420,10 @@
56991
57420
  "inside",
56992
57421
  "outside top",
56993
57422
  "inside top",
57423
+ "outside left",
57424
+ "inside left",
57425
+ "outside right",
57426
+ "inside right",
56994
57427
  "outside bottom",
56995
57428
  "inside bottom"
56996
57429
  ]
@@ -57088,8 +57521,7 @@
57088
57521
  },
57089
57522
  "role": "object",
57090
57523
  "side": {
57091
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
57092
- "dflt": "top",
57524
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
57093
57525
  "editType": "colorbars",
57094
57526
  "valType": "enumerated",
57095
57527
  "values": [
@@ -57105,16 +57537,14 @@
57105
57537
  }
57106
57538
  },
57107
57539
  "x": {
57108
- "description": "Sets the x position of the color bar (in plot fraction).",
57109
- "dflt": 1.02,
57540
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
57110
57541
  "editType": "colorbars",
57111
57542
  "max": 3,
57112
57543
  "min": -2,
57113
57544
  "valType": "number"
57114
57545
  },
57115
57546
  "xanchor": {
57116
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
57117
- "dflt": "left",
57547
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
57118
57548
  "editType": "colorbars",
57119
57549
  "valType": "enumerated",
57120
57550
  "values": [
@@ -57131,16 +57561,14 @@
57131
57561
  "valType": "number"
57132
57562
  },
57133
57563
  "y": {
57134
- "description": "Sets the y position of the color bar (in plot fraction).",
57135
- "dflt": 0.5,
57564
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
57136
57565
  "editType": "colorbars",
57137
57566
  "max": 3,
57138
57567
  "min": -2,
57139
57568
  "valType": "number"
57140
57569
  },
57141
57570
  "yanchor": {
57142
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
57143
- "dflt": "middle",
57571
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
57144
57572
  "editType": "colorbars",
57145
57573
  "valType": "enumerated",
57146
57574
  "values": [
@@ -58624,6 +59052,16 @@
58624
59052
  "min": 0,
58625
59053
  "valType": "integer"
58626
59054
  },
59055
+ "orientation": {
59056
+ "description": "Sets the orientation of the colorbar.",
59057
+ "dflt": "v",
59058
+ "editType": "colorbars",
59059
+ "valType": "enumerated",
59060
+ "values": [
59061
+ "h",
59062
+ "v"
59063
+ ]
59064
+ },
58627
59065
  "outlinecolor": {
58628
59066
  "description": "Sets the axis line color.",
58629
59067
  "dflt": "#444",
@@ -58807,7 +59245,7 @@
58807
59245
  ]
58808
59246
  },
58809
59247
  "ticklabelposition": {
58810
- "description": "Determines where tick labels are drawn.",
59248
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
58811
59249
  "dflt": "outside",
58812
59250
  "editType": "colorbars",
58813
59251
  "valType": "enumerated",
@@ -58816,6 +59254,10 @@
58816
59254
  "inside",
58817
59255
  "outside top",
58818
59256
  "inside top",
59257
+ "outside left",
59258
+ "inside left",
59259
+ "outside right",
59260
+ "inside right",
58819
59261
  "outside bottom",
58820
59262
  "inside bottom"
58821
59263
  ]
@@ -58913,8 +59355,7 @@
58913
59355
  },
58914
59356
  "role": "object",
58915
59357
  "side": {
58916
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
58917
- "dflt": "top",
59358
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
58918
59359
  "editType": "colorbars",
58919
59360
  "valType": "enumerated",
58920
59361
  "values": [
@@ -58930,16 +59371,14 @@
58930
59371
  }
58931
59372
  },
58932
59373
  "x": {
58933
- "description": "Sets the x position of the color bar (in plot fraction).",
58934
- "dflt": 1.02,
59374
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
58935
59375
  "editType": "colorbars",
58936
59376
  "max": 3,
58937
59377
  "min": -2,
58938
59378
  "valType": "number"
58939
59379
  },
58940
59380
  "xanchor": {
58941
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
58942
- "dflt": "left",
59381
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
58943
59382
  "editType": "colorbars",
58944
59383
  "valType": "enumerated",
58945
59384
  "values": [
@@ -58956,16 +59395,14 @@
58956
59395
  "valType": "number"
58957
59396
  },
58958
59397
  "y": {
58959
- "description": "Sets the y position of the color bar (in plot fraction).",
58960
- "dflt": 0.5,
59398
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
58961
59399
  "editType": "colorbars",
58962
59400
  "max": 3,
58963
59401
  "min": -2,
58964
59402
  "valType": "number"
58965
59403
  },
58966
59404
  "yanchor": {
58967
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
58968
- "dflt": "middle",
59405
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
58969
59406
  "editType": "colorbars",
58970
59407
  "valType": "enumerated",
58971
59408
  "values": [
@@ -60403,6 +60840,16 @@
60403
60840
  "min": 0,
60404
60841
  "valType": "integer"
60405
60842
  },
60843
+ "orientation": {
60844
+ "description": "Sets the orientation of the colorbar.",
60845
+ "dflt": "v",
60846
+ "editType": "colorbars",
60847
+ "valType": "enumerated",
60848
+ "values": [
60849
+ "h",
60850
+ "v"
60851
+ ]
60852
+ },
60406
60853
  "outlinecolor": {
60407
60854
  "description": "Sets the axis line color.",
60408
60855
  "dflt": "#444",
@@ -60586,7 +61033,7 @@
60586
61033
  ]
60587
61034
  },
60588
61035
  "ticklabelposition": {
60589
- "description": "Determines where tick labels are drawn.",
61036
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
60590
61037
  "dflt": "outside",
60591
61038
  "editType": "colorbars",
60592
61039
  "valType": "enumerated",
@@ -60595,6 +61042,10 @@
60595
61042
  "inside",
60596
61043
  "outside top",
60597
61044
  "inside top",
61045
+ "outside left",
61046
+ "inside left",
61047
+ "outside right",
61048
+ "inside right",
60598
61049
  "outside bottom",
60599
61050
  "inside bottom"
60600
61051
  ]
@@ -60692,8 +61143,7 @@
60692
61143
  },
60693
61144
  "role": "object",
60694
61145
  "side": {
60695
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
60696
- "dflt": "top",
61146
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
60697
61147
  "editType": "colorbars",
60698
61148
  "valType": "enumerated",
60699
61149
  "values": [
@@ -60709,16 +61159,14 @@
60709
61159
  }
60710
61160
  },
60711
61161
  "x": {
60712
- "description": "Sets the x position of the color bar (in plot fraction).",
60713
- "dflt": 1.02,
61162
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
60714
61163
  "editType": "colorbars",
60715
61164
  "max": 3,
60716
61165
  "min": -2,
60717
61166
  "valType": "number"
60718
61167
  },
60719
61168
  "xanchor": {
60720
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
60721
- "dflt": "left",
61169
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
60722
61170
  "editType": "colorbars",
60723
61171
  "valType": "enumerated",
60724
61172
  "values": [
@@ -60735,16 +61183,14 @@
60735
61183
  "valType": "number"
60736
61184
  },
60737
61185
  "y": {
60738
- "description": "Sets the y position of the color bar (in plot fraction).",
60739
- "dflt": 0.5,
61186
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
60740
61187
  "editType": "colorbars",
60741
61188
  "max": 3,
60742
61189
  "min": -2,
60743
61190
  "valType": "number"
60744
61191
  },
60745
61192
  "yanchor": {
60746
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
60747
- "dflt": "middle",
61193
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
60748
61194
  "editType": "colorbars",
60749
61195
  "valType": "enumerated",
60750
61196
  "values": [
@@ -61786,6 +62232,16 @@
61786
62232
  "min": 0,
61787
62233
  "valType": "integer"
61788
62234
  },
62235
+ "orientation": {
62236
+ "description": "Sets the orientation of the colorbar.",
62237
+ "dflt": "v",
62238
+ "editType": "colorbars",
62239
+ "valType": "enumerated",
62240
+ "values": [
62241
+ "h",
62242
+ "v"
62243
+ ]
62244
+ },
61789
62245
  "outlinecolor": {
61790
62246
  "description": "Sets the axis line color.",
61791
62247
  "dflt": "#444",
@@ -61969,7 +62425,7 @@
61969
62425
  ]
61970
62426
  },
61971
62427
  "ticklabelposition": {
61972
- "description": "Determines where tick labels are drawn.",
62428
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
61973
62429
  "dflt": "outside",
61974
62430
  "editType": "colorbars",
61975
62431
  "valType": "enumerated",
@@ -61978,6 +62434,10 @@
61978
62434
  "inside",
61979
62435
  "outside top",
61980
62436
  "inside top",
62437
+ "outside left",
62438
+ "inside left",
62439
+ "outside right",
62440
+ "inside right",
61981
62441
  "outside bottom",
61982
62442
  "inside bottom"
61983
62443
  ]
@@ -62075,8 +62535,7 @@
62075
62535
  },
62076
62536
  "role": "object",
62077
62537
  "side": {
62078
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
62079
- "dflt": "top",
62538
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
62080
62539
  "editType": "colorbars",
62081
62540
  "valType": "enumerated",
62082
62541
  "values": [
@@ -62092,16 +62551,14 @@
62092
62551
  }
62093
62552
  },
62094
62553
  "x": {
62095
- "description": "Sets the x position of the color bar (in plot fraction).",
62096
- "dflt": 1.02,
62554
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
62097
62555
  "editType": "colorbars",
62098
62556
  "max": 3,
62099
62557
  "min": -2,
62100
62558
  "valType": "number"
62101
62559
  },
62102
62560
  "xanchor": {
62103
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
62104
- "dflt": "left",
62561
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
62105
62562
  "editType": "colorbars",
62106
62563
  "valType": "enumerated",
62107
62564
  "values": [
@@ -62118,16 +62575,14 @@
62118
62575
  "valType": "number"
62119
62576
  },
62120
62577
  "y": {
62121
- "description": "Sets the y position of the color bar (in plot fraction).",
62122
- "dflt": 0.5,
62578
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
62123
62579
  "editType": "colorbars",
62124
62580
  "max": 3,
62125
62581
  "min": -2,
62126
62582
  "valType": "number"
62127
62583
  },
62128
62584
  "yanchor": {
62129
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
62130
- "dflt": "middle",
62585
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
62131
62586
  "editType": "colorbars",
62132
62587
  "valType": "enumerated",
62133
62588
  "values": [
@@ -63223,6 +63678,16 @@
63223
63678
  "min": 0,
63224
63679
  "valType": "integer"
63225
63680
  },
63681
+ "orientation": {
63682
+ "description": "Sets the orientation of the colorbar.",
63683
+ "dflt": "v",
63684
+ "editType": "colorbars",
63685
+ "valType": "enumerated",
63686
+ "values": [
63687
+ "h",
63688
+ "v"
63689
+ ]
63690
+ },
63226
63691
  "outlinecolor": {
63227
63692
  "description": "Sets the axis line color.",
63228
63693
  "dflt": "#444",
@@ -63406,7 +63871,7 @@
63406
63871
  ]
63407
63872
  },
63408
63873
  "ticklabelposition": {
63409
- "description": "Determines where tick labels are drawn.",
63874
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
63410
63875
  "dflt": "outside",
63411
63876
  "editType": "colorbars",
63412
63877
  "valType": "enumerated",
@@ -63415,6 +63880,10 @@
63415
63880
  "inside",
63416
63881
  "outside top",
63417
63882
  "inside top",
63883
+ "outside left",
63884
+ "inside left",
63885
+ "outside right",
63886
+ "inside right",
63418
63887
  "outside bottom",
63419
63888
  "inside bottom"
63420
63889
  ]
@@ -63512,8 +63981,7 @@
63512
63981
  },
63513
63982
  "role": "object",
63514
63983
  "side": {
63515
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
63516
- "dflt": "top",
63984
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
63517
63985
  "editType": "colorbars",
63518
63986
  "valType": "enumerated",
63519
63987
  "values": [
@@ -63529,16 +63997,14 @@
63529
63997
  }
63530
63998
  },
63531
63999
  "x": {
63532
- "description": "Sets the x position of the color bar (in plot fraction).",
63533
- "dflt": 1.02,
64000
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
63534
64001
  "editType": "colorbars",
63535
64002
  "max": 3,
63536
64003
  "min": -2,
63537
64004
  "valType": "number"
63538
64005
  },
63539
64006
  "xanchor": {
63540
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
63541
- "dflt": "left",
64007
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
63542
64008
  "editType": "colorbars",
63543
64009
  "valType": "enumerated",
63544
64010
  "values": [
@@ -63555,16 +64021,14 @@
63555
64021
  "valType": "number"
63556
64022
  },
63557
64023
  "y": {
63558
- "description": "Sets the y position of the color bar (in plot fraction).",
63559
- "dflt": 0.5,
64024
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
63560
64025
  "editType": "colorbars",
63561
64026
  "max": 3,
63562
64027
  "min": -2,
63563
64028
  "valType": "number"
63564
64029
  },
63565
64030
  "yanchor": {
63566
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
63567
- "dflt": "middle",
64031
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
63568
64032
  "editType": "colorbars",
63569
64033
  "valType": "enumerated",
63570
64034
  "values": [
@@ -64080,6 +64544,16 @@
64080
64544
  "min": 0,
64081
64545
  "valType": "integer"
64082
64546
  },
64547
+ "orientation": {
64548
+ "description": "Sets the orientation of the colorbar.",
64549
+ "dflt": "v",
64550
+ "editType": "calc",
64551
+ "valType": "enumerated",
64552
+ "values": [
64553
+ "h",
64554
+ "v"
64555
+ ]
64556
+ },
64083
64557
  "outlinecolor": {
64084
64558
  "description": "Sets the axis line color.",
64085
64559
  "dflt": "#444",
@@ -64263,7 +64737,7 @@
64263
64737
  ]
64264
64738
  },
64265
64739
  "ticklabelposition": {
64266
- "description": "Determines where tick labels are drawn.",
64740
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
64267
64741
  "dflt": "outside",
64268
64742
  "editType": "calc",
64269
64743
  "valType": "enumerated",
@@ -64272,6 +64746,10 @@
64272
64746
  "inside",
64273
64747
  "outside top",
64274
64748
  "inside top",
64749
+ "outside left",
64750
+ "inside left",
64751
+ "outside right",
64752
+ "inside right",
64275
64753
  "outside bottom",
64276
64754
  "inside bottom"
64277
64755
  ]
@@ -64369,8 +64847,7 @@
64369
64847
  },
64370
64848
  "role": "object",
64371
64849
  "side": {
64372
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
64373
- "dflt": "top",
64850
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
64374
64851
  "editType": "calc",
64375
64852
  "valType": "enumerated",
64376
64853
  "values": [
@@ -64386,16 +64863,14 @@
64386
64863
  }
64387
64864
  },
64388
64865
  "x": {
64389
- "description": "Sets the x position of the color bar (in plot fraction).",
64390
- "dflt": 1.02,
64866
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
64391
64867
  "editType": "calc",
64392
64868
  "max": 3,
64393
64869
  "min": -2,
64394
64870
  "valType": "number"
64395
64871
  },
64396
64872
  "xanchor": {
64397
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
64398
- "dflt": "left",
64873
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
64399
64874
  "editType": "calc",
64400
64875
  "valType": "enumerated",
64401
64876
  "values": [
@@ -64412,16 +64887,14 @@
64412
64887
  "valType": "number"
64413
64888
  },
64414
64889
  "y": {
64415
- "description": "Sets the y position of the color bar (in plot fraction).",
64416
- "dflt": 0.5,
64890
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
64417
64891
  "editType": "calc",
64418
64892
  "max": 3,
64419
64893
  "min": -2,
64420
64894
  "valType": "number"
64421
64895
  },
64422
64896
  "yanchor": {
64423
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
64424
- "dflt": "middle",
64897
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
64425
64898
  "editType": "calc",
64426
64899
  "valType": "enumerated",
64427
64900
  "values": [
@@ -66406,6 +66879,16 @@
66406
66879
  "min": 0,
66407
66880
  "valType": "integer"
66408
66881
  },
66882
+ "orientation": {
66883
+ "description": "Sets the orientation of the colorbar.",
66884
+ "dflt": "v",
66885
+ "editType": "colorbars",
66886
+ "valType": "enumerated",
66887
+ "values": [
66888
+ "h",
66889
+ "v"
66890
+ ]
66891
+ },
66409
66892
  "outlinecolor": {
66410
66893
  "description": "Sets the axis line color.",
66411
66894
  "dflt": "#444",
@@ -66589,7 +67072,7 @@
66589
67072
  ]
66590
67073
  },
66591
67074
  "ticklabelposition": {
66592
- "description": "Determines where tick labels are drawn.",
67075
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
66593
67076
  "dflt": "outside",
66594
67077
  "editType": "colorbars",
66595
67078
  "valType": "enumerated",
@@ -66598,6 +67081,10 @@
66598
67081
  "inside",
66599
67082
  "outside top",
66600
67083
  "inside top",
67084
+ "outside left",
67085
+ "inside left",
67086
+ "outside right",
67087
+ "inside right",
66601
67088
  "outside bottom",
66602
67089
  "inside bottom"
66603
67090
  ]
@@ -66695,8 +67182,7 @@
66695
67182
  },
66696
67183
  "role": "object",
66697
67184
  "side": {
66698
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
66699
- "dflt": "top",
67185
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
66700
67186
  "editType": "colorbars",
66701
67187
  "valType": "enumerated",
66702
67188
  "values": [
@@ -66712,16 +67198,14 @@
66712
67198
  }
66713
67199
  },
66714
67200
  "x": {
66715
- "description": "Sets the x position of the color bar (in plot fraction).",
66716
- "dflt": 1.02,
67201
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
66717
67202
  "editType": "colorbars",
66718
67203
  "max": 3,
66719
67204
  "min": -2,
66720
67205
  "valType": "number"
66721
67206
  },
66722
67207
  "xanchor": {
66723
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
66724
- "dflt": "left",
67208
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
66725
67209
  "editType": "colorbars",
66726
67210
  "valType": "enumerated",
66727
67211
  "values": [
@@ -66738,16 +67222,14 @@
66738
67222
  "valType": "number"
66739
67223
  },
66740
67224
  "y": {
66741
- "description": "Sets the y position of the color bar (in plot fraction).",
66742
- "dflt": 0.5,
67225
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
66743
67226
  "editType": "colorbars",
66744
67227
  "max": 3,
66745
67228
  "min": -2,
66746
67229
  "valType": "number"
66747
67230
  },
66748
67231
  "yanchor": {
66749
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
66750
- "dflt": "middle",
67232
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
66751
67233
  "editType": "colorbars",
66752
67234
  "valType": "enumerated",
66753
67235
  "values": [
@@ -68686,6 +69168,16 @@
68686
69168
  "min": 0,
68687
69169
  "valType": "integer"
68688
69170
  },
69171
+ "orientation": {
69172
+ "description": "Sets the orientation of the colorbar.",
69173
+ "dflt": "v",
69174
+ "editType": "calc",
69175
+ "valType": "enumerated",
69176
+ "values": [
69177
+ "h",
69178
+ "v"
69179
+ ]
69180
+ },
68689
69181
  "outlinecolor": {
68690
69182
  "description": "Sets the axis line color.",
68691
69183
  "dflt": "#444",
@@ -68869,7 +69361,7 @@
68869
69361
  ]
68870
69362
  },
68871
69363
  "ticklabelposition": {
68872
- "description": "Determines where tick labels are drawn.",
69364
+ "description": "Determines where tick labels are drawn relative to the ticks. Left and right options are used when `orientation` is *h*, top and bottom when `orientation` is *v*.",
68873
69365
  "dflt": "outside",
68874
69366
  "editType": "calc",
68875
69367
  "valType": "enumerated",
@@ -68878,6 +69370,10 @@
68878
69370
  "inside",
68879
69371
  "outside top",
68880
69372
  "inside top",
69373
+ "outside left",
69374
+ "inside left",
69375
+ "outside right",
69376
+ "inside right",
68881
69377
  "outside bottom",
68882
69378
  "inside bottom"
68883
69379
  ]
@@ -68975,8 +69471,7 @@
68975
69471
  },
68976
69472
  "role": "object",
68977
69473
  "side": {
68978
- "description": "Determines the location of color bar's title with respect to the color bar. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
68979
- "dflt": "top",
69474
+ "description": "Determines the location of color bar's title with respect to the color bar. Defaults to *top* when `orientation` if *v* and defaults to *right* when `orientation` if *h*. Note that the title's location used to be set by the now deprecated `titleside` attribute.",
68980
69475
  "editType": "calc",
68981
69476
  "valType": "enumerated",
68982
69477
  "values": [
@@ -68992,16 +69487,14 @@
68992
69487
  }
68993
69488
  },
68994
69489
  "x": {
68995
- "description": "Sets the x position of the color bar (in plot fraction).",
68996
- "dflt": 1.02,
69490
+ "description": "Sets the x position of the color bar (in plot fraction). Defaults to 1.02 when `orientation` is *v* and 0.5 when `orientation` is *h*.",
68997
69491
  "editType": "calc",
68998
69492
  "max": 3,
68999
69493
  "min": -2,
69000
69494
  "valType": "number"
69001
69495
  },
69002
69496
  "xanchor": {
69003
- "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar.",
69004
- "dflt": "left",
69497
+ "description": "Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the *left*, *center* or *right* of the color bar. Defaults to *left* when `orientation` is *v* and *center* when `orientation` is *h*.",
69005
69498
  "editType": "calc",
69006
69499
  "valType": "enumerated",
69007
69500
  "values": [
@@ -69018,16 +69511,14 @@
69018
69511
  "valType": "number"
69019
69512
  },
69020
69513
  "y": {
69021
- "description": "Sets the y position of the color bar (in plot fraction).",
69022
- "dflt": 0.5,
69514
+ "description": "Sets the y position of the color bar (in plot fraction). Defaults to 0.5 when `orientation` is *v* and 1.02 when `orientation` is *h*.",
69023
69515
  "editType": "calc",
69024
69516
  "max": 3,
69025
69517
  "min": -2,
69026
69518
  "valType": "number"
69027
69519
  },
69028
69520
  "yanchor": {
69029
- "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar.",
69030
- "dflt": "middle",
69521
+ "description": "Sets this color bar's vertical position anchor This anchor binds the `y` position to the *top*, *middle* or *bottom* of the color bar. Defaults to *middle* when `orientation` is *v* and *bottom* when `orientation` is *h*.",
69031
69522
  "editType": "calc",
69032
69523
  "valType": "enumerated",
69033
69524
  "values": [