You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <paramname="TickFormat">Sets the tick label formatting rule using d3 formatting mini-languages which are very similar to those in Python. For numbers, see: https://github.com/d3/d3-format/tree/v1.4.5#d3-format. And for dates see: https://github.com/d3/d3-time-format/tree/v2.2.3#locale_format. We add two items to d3's date formatter: "%h" for half of the year as a decimal number as well as "%{n}f" for fractional seconds with n digits. For example, "2016-10-13 09:15:23.456" with tickformat "%H~%M~%S.%2f" would display "09~15~23.46"</param>
172
174
/// <paramname="TickFormatStops">Set rules for customizing TickFormat on different zoom levels</param>
173
175
/// <paramname="TickLabelOverflow">Determines how we handle tick labels that would overflow either the graph div or the domain of the axis. The default value for inside tick labels is "hide past domain". In other cases the default is "hide past div".</param>
174
-
/// <paramname="TickLabelPosition">Determines where tick labels are drawn.</param>
176
+
/// <paramname="TickLabelPosition">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*.</param>
175
177
/// <paramname="TickLen">Sets the tick length (in px).</param>
176
178
/// <paramname="TickMode">Sets the tick mode for this axis. If "auto", the number of ticks is set via `nticks`. If "linear", the placement of the ticks is determined by a starting position `tick0` and a tick step `dtick` ("linear" is the default value if `tick0` and `dtick` are provided). If "array", the placement of the ticks is set via `tickvals` and the tick text is `ticktext`. ("array" is the default value if `tickvals` is provided).</param>
177
179
/// <paramname="TickPrefix">Sets a tick label prefix.</param>
@@ -181,11 +183,11 @@ type ColorBar() =
181
183
/// <paramname="TickVals">Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to "array". Used with `ticktext`.</param>
182
184
/// <paramname="TickWidth">Sets the tick width (in px).</param>
183
185
/// <paramname="Title">Sets the ColorBar title.</param>
184
-
/// <paramname="X">Sets the x position of the color bar (in plot fraction).</param>
185
-
/// <paramname="XAnchor">Sets this color bar's horizontal position anchor. This anchor binds the `x` position to the "left", "center" or "right" of the color bar.</param>
186
+
/// <paramname="X">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*.</param>
187
+
/// <paramname="XAnchor">'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*.</param>
186
188
/// <paramname="XPad">Sets the amount of padding (in px) along the x direction.</param>
187
-
/// <paramname="Y">Sets the y position of the color bar (in plot fraction).</param>
188
-
/// <paramname="YAnchor">Sets this color bar's vertical position anchor This anchor binds the `y` position to the "top", "middle" or "bottom" of the color bar.</param>
189
+
/// <paramname="Y">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*.'</param>
190
+
/// <paramname="YAnchor">'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*.'</param>
189
191
/// <paramname="YPad">Sets the amount of padding (in px) along the y direction.</param>
0 commit comments