layout.coloraxis
fig.update_coloraxes(...)
fig.update_coloraxes(autocolorscale=<VALUE>)
True
Determines whether the colorscale is a default palette (`autocolorscale: True`) or the palette determined by `colorscale`. In case `colorscale` is unspecified or `autocolorscale` is True, the default palette will be chosen according to whether numbers in the `color` array are all positive, all negative or mixed.
fig.update_coloraxes(cauto=<VALUE>)
True
Determines whether or not the color domain is computed with respect to the input data (here corresponding trace color array(s)) or the bounds set in `cmin` and `cmax` Defaults to `False` when `cmin` and `cmax` are set by the user.
fig.update_coloraxes(cmax=<VALUE>)
Sets the upper bound of the color domain. Value should have the same units as corresponding trace color array(s) and if set, `cmin` must be set as well.
fig.update_coloraxes(cmid=<VALUE>)
Sets the mid-point of the color domain by scaling `cmin` and/or `cmax` to be equidistant to this point. Value should have the same units as corresponding trace color array(s). Has no effect when `cauto` is `False`.
fig.update_coloraxes(cmin=<VALUE>)
Sets the lower bound of the color domain. Value should have the same units as corresponding trace color array(s) and if set, `cmax` must be set as well.
fig.update_coloraxes(colorbar=dict(...))
fig.update_coloraxes(colorbar_bgcolor=<VALUE>)
"rgba(0,0,0,0)"
Sets the color of padded area.
fig.update_coloraxes(colorbar_bordercolor=<VALUE>)
"#444"
Sets the axis line color.
fig.update_coloraxes(colorbar_borderwidth=<VALUE>)
0
Sets the width (in px) or the border enclosing this color bar.
fig.update_coloraxes(colorbar_dtick=<VALUE>)
Sets the step in-between ticks on this axis. Use with `tick0`. Must be a positive number, or special strings available to "log" and "date" axes. If the axis `type` is "log", then ticks are set every 10^(n"dtick) where n is the tick number. For example, to set a tick mark at 1, 10, 100, 1000, ... set dtick to 1. To set tick marks at 1, 100, 10000, ... set dtick to 2. To set tick marks at 1, 5, 25, 125, 625, 3125, ... set dtick to log_10(5), or 0.69897000433. "log" has several special values; "L<f>", where `f` is a positive number, gives ticks linearly spaced in value (but not position). For example `tick0` = 0.1, `dtick` = "L0.5" will put ticks at 0.1, 0.6, 1.1, 1.6 etc. To show powers of 10 plus small digits between, use "D1" (all digits) or "D2" (only 2 and 5). `tick0` is ignored for "D1" and "D2". If the axis `type` is "date", then you must convert the time to milliseconds. For example, to set the interval between ticks to one day, set `dtick` to 86400000.0. "date" also has special values "M<n>" gives ticks spaced by a number of months. `n` must be a positive integer. To set ticks on the 15th of every third month, set `tick0` to "2000-01-15" and `dtick` to "M3". To set ticks every 4 years, set `dtick` to "M48"
fig.update_coloraxes(colorbar_exponentformat=<VALUE>)
"none"
| "e"
| "E"
| "power"
| "SI"
| "B"
) "B"
Determines a formatting rule for the tick exponents. For example, consider the number 1,000,000,000. If "none", it appears as 1,000,000,000. If "e", 1e+9. If "E", 1E+9. If "power", 1x10^9 (with 9 in a super script). If "SI", 1G. If "B", 1B.
fig.update_coloraxes(colorbar_labelalias=<VALUE>)
Replacement text for specific tick or hover labels. For example using {US: 'USA', CA: 'Canada'} changes US to USA and CA to Canada. The labels we would have shown must match the keys exactly, after adding any tickprefix or ticksuffix. For negative numbers the minus sign symbol used (U+2212) is wider than the regular ascii dash. That means you need to use −1 instead of -1. labelalias can be used with any axis type, and both keys (if needed) and values (if desired) can include html-like tags or MathJax.
fig.update_coloraxes(colorbar_len=<VALUE>)
1
Sets the length of the color bar This measure excludes the padding of both ends. That is, the color bar length is this length minus the padding on both ends.
fig.update_coloraxes(colorbar_lenmode=<VALUE>)
"fraction"
| "pixels"
) "fraction"
Determines whether this color bar's length (i.e. the measure in the color variation direction) is set in units of plot "fraction" or in "pixels. Use `len` to set the value.
fig.update_coloraxes(colorbar_minexponent=<VALUE>)
3
Hide SI prefix for 10^n if |n| is below this number. This only has an effect when `tickformat` is "SI" or "B".
fig.update_coloraxes(colorbar_nticks=<VALUE>)
0
Specifies the maximum number of ticks for the particular axis. The actual number of ticks will be chosen automatically to be less than or equal to `nticks`. Has an effect only if `tickmode` is set to "auto".
fig.update_coloraxes(colorbar_orientation=<VALUE>)
"h"
| "v"
) "v"
Sets the orientation of the colorbar.
fig.update_coloraxes(colorbar_outlinecolor=<VALUE>)
"#444"
Sets the axis line color.
fig.update_coloraxes(colorbar_outlinewidth=<VALUE>)
1
Sets the width (in px) of the axis line.
fig.update_coloraxes(colorbar_separatethousands=<VALUE>)
If "True", even 4-digit integers are separated
fig.update_coloraxes(colorbar_showexponent=<VALUE>)
"all"
| "first"
| "last"
| "none"
) "all"
If "all", all exponents are shown besides their significands. If "first", only the exponent of the first tick is shown. If "last", only the exponent of the last tick is shown. If "none", no exponents appear.
fig.update_coloraxes(colorbar_showticklabels=<VALUE>)
True
Determines whether or not the tick labels are drawn.
fig.update_coloraxes(colorbar_showtickprefix=<VALUE>)
"all"
| "first"
| "last"
| "none"
) "all"
If "all", all tick labels are displayed with a prefix. If "first", only the first tick is displayed with a prefix. If "last", only the last tick is displayed with a suffix. If "none", tick prefixes are hidden.
fig.update_coloraxes(colorbar_showticksuffix=<VALUE>)
"all"
| "first"
| "last"
| "none"
) "all"
Same as `showtickprefix` but for tick suffixes.
fig.update_coloraxes(colorbar_thickness=<VALUE>)
30
Sets the thickness of the color bar This measure excludes the size of the padding, ticks and labels.
fig.update_coloraxes(colorbar_thicknessmode=<VALUE>)
"fraction"
| "pixels"
) "pixels"
Determines whether this color bar's thickness (i.e. the measure in the constant color direction) is set in units of plot "fraction" or in "pixels". Use `thickness` to set the value.
fig.update_coloraxes(colorbar_tick0=<VALUE>)
Sets the placement of the first tick on this axis. Use with `dtick`. If the axis `type` is "log", then you must take the log of your starting tick (e.g. to set the starting tick to 100, set the `tick0` to 2) except when `dtick`="L<f>" (see `dtick` for more info). If the axis `type` is "date", it should be a date string, like date data. If the axis `type` is "category", it should be a number, using the scale where each category is assigned a serial number from zero in the order it appears.
fig.update_coloraxes(colorbar_tickangle=<VALUE>)
"auto"
Sets the angle of the tick labels with respect to the horizontal. For example, a `tickangle` of -90 draws the tick labels vertically.
fig.update_coloraxes(colorbar_tickcolor=<VALUE>)
"#444"
Sets the tick color.
fig.update_coloraxes(colorbar_tickfont=dict(...))
Sets the color bar's tick label font
fig.update_coloraxes(colorbar_tickfont_color=<VALUE>)
fig.update_coloraxes(colorbar_tickfont_family=<VALUE>)
HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
fig.update_coloraxes(colorbar_tickfont_lineposition=<VALUE>)
"under"
, "over"
, "through"
joined with a "+"
OR "none"
. "under"
, "over"
, "under+over"
, "under+over+through"
, "none"
"none"
Sets the kind of decoration line(s) with text, such as an "under", "over" or "through" as well as combinations e.g. "under+over", etc.
fig.update_coloraxes(colorbar_tickfont_shadow=<VALUE>)
"none"
Sets the shape and color of the shadow behind text. "auto" places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
fig.update_coloraxes(colorbar_tickfont_size=<VALUE>)
fig.update_coloraxes(colorbar_tickfont_style=<VALUE>)
"normal"
| "italic"
) "normal"
Sets whether a font should be styled with a normal or italic face from its family.
fig.update_coloraxes(colorbar_tickfont_textcase=<VALUE>)
"normal"
| "word caps"
| "upper"
| "lower"
) "normal"
Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
fig.update_coloraxes(colorbar_tickfont_variant=<VALUE>)
"normal"
| "small-caps"
| "all-small-caps"
| "all-petite-caps"
| "petite-caps"
| "unicase"
) "normal"
Sets the variant of the font.
fig.update_coloraxes(colorbar_tickfont_weight=<VALUE>)
normal
Sets the weight (or boldness) of the font.
fig.update_coloraxes(colorbar_tickformat=<VALUE>)
""
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"
fig.update_coloraxes(colorbar_tickformatstops=list(...))
layout.coloraxis.colorbar.tickformatstops[]
range ["min", "max"], where "min", "max" - dtick values which describe some zoom level, it is possible to omit "min" or "max" value by passing "null"
layout.coloraxis.colorbar.tickformatstops[]
True
Determines whether or not this stop is used. If `False`, this stop is ignored even within its `dtickrange`.
layout.coloraxis.colorbar.tickformatstops[]
When used in a template, named items are created in the output figure in addition to any items the figure already has in this array. You can modify these items in the output figure by making your own item with `templateitemname` matching this `name` alongside your modifications (including `visible: False` or `enabled: False` to hide it). Has no effect outside of a template.
layout.coloraxis.colorbar.tickformatstops[]
Used to refer to a named item in this array in the template. Named items from the template will be created even without a matching item in the input figure, but you can modify one by making an item with `templateitemname` matching its `name`, alongside your modifications (including `visible: False` or `enabled: False` to hide it). If there is no template or no matching item, this item will be hidden unless you explicitly show it with `visible: True`.
layout.coloraxis.colorbar.tickformatstops[]
""
string - dtickformat for described zoom level, the same as "tickformat"
fig.update_coloraxes(colorbar_ticklabeloverflow=<VALUE>)
"allow"
| "hide past div"
| "hide past domain"
)
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".
fig.update_coloraxes(colorbar_ticklabelposition=<VALUE>)
"outside"
| "inside"
| "outside top"
| "inside top"
| "outside left"
| "inside left"
| "outside right"
| "inside right"
| "outside bottom"
| "inside bottom"
) "outside"
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".
fig.update_coloraxes(colorbar_ticklabelstep=<VALUE>)
1
Sets the spacing between tick labels as compared to the spacing between ticks. A value of 1 (default) means each tick gets a label. A value of 2 means shows every 2nd label. A larger value n means only every nth tick is labeled. `tick0` determines which labels are shown. Not implemented for axes with `type` "log" or "multicategory", or when `tickmode` is "array".
fig.update_coloraxes(colorbar_ticklen=<VALUE>)
5
Sets the tick length (in px).
fig.update_coloraxes(colorbar_tickmode=<VALUE>)
"auto"
| "linear"
| "array"
)
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).
fig.update_coloraxes(colorbar_tickprefix=<VALUE>)
""
Sets a tick label prefix.
fig.update_coloraxes(colorbar_ticks=<VALUE>)
"outside"
| "inside"
| ""
) ""
Determines whether ticks are drawn or not. If "", this axis' ticks are not drawn. If "outside" ("inside"), this axis' are drawn outside (inside) the axis lines.
fig.update_coloraxes(colorbar_ticksuffix=<VALUE>)
""
Sets a tick label suffix.
fig.update_coloraxes(colorbar_ticktext=<VALUE>)
Sets the text displayed at the ticks position via `tickvals`. Only has an effect if `tickmode` is set to "array". Used with `tickvals`.
fig.update_coloraxes(colorbar_tickvals=<VALUE>)
Sets the values at which ticks on this axis appear. Only has an effect if `tickmode` is set to "array". Used with `ticktext`.
fig.update_coloraxes(colorbar_tickwidth=<VALUE>)
1
Sets the tick width (in px).
fig.update_coloraxes(colorbar_title=dict(...))
fig.update_coloraxes(colorbar_title_font=dict(...))
Sets this color bar's title font.
fig.update_coloraxes(colorbar_title_font_color=<VALUE>)
fig.update_coloraxes(colorbar_title_font_family=<VALUE>)
HTML font family - the typeface that will be applied by the web browser. The web browser can only apply a font if it is available on the system where it runs. Provide multiple font families, separated by commas, to indicate the order in which to apply fonts if they aren't available.
fig.update_coloraxes(colorbar_title_font_lineposition=<VALUE>)
"under"
, "over"
, "through"
joined with a "+"
OR "none"
. "under"
, "over"
, "under+over"
, "under+over+through"
, "none"
"none"
Sets the kind of decoration line(s) with text, such as an "under", "over" or "through" as well as combinations e.g. "under+over", etc.
fig.update_coloraxes(colorbar_title_font_shadow=<VALUE>)
"none"
Sets the shape and color of the shadow behind text. "auto" places minimal shadow and applies contrast text font color. See https://developer.mozilla.org/en-US/docs/Web/CSS/text-shadow for additional options.
fig.update_coloraxes(colorbar_title_font_size=<VALUE>)
fig.update_coloraxes(colorbar_title_font_style=<VALUE>)
"normal"
| "italic"
) "normal"
Sets whether a font should be styled with a normal or italic face from its family.
fig.update_coloraxes(colorbar_title_font_textcase=<VALUE>)
"normal"
| "word caps"
| "upper"
| "lower"
) "normal"
Sets capitalization of text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized.
fig.update_coloraxes(colorbar_title_font_variant=<VALUE>)
"normal"
| "small-caps"
| "all-small-caps"
| "all-petite-caps"
| "petite-caps"
| "unicase"
) "normal"
Sets the variant of the font.
fig.update_coloraxes(colorbar_title_font_weight=<VALUE>)
normal
Sets the weight (or boldness) of the font.
fig.update_coloraxes(colorbar_title_side=<VALUE>)
"right"
| "top"
| "bottom"
)
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".
fig.update_coloraxes(colorbar_title_text=<VALUE>)
Sets the title of the color bar.
fig.update_coloraxes(colorbar_x=<VALUE>)
Sets the x position with respect to `xref` of the color bar (in plot fraction). When `xref` is "paper", defaults to 1.02 when `orientation` is "v" and 0.5 when `orientation` is "h". When `xref` is "container", defaults to "1" when `orientation` is "v" and 0.5 when `orientation` is "h". Must be between "0" and "1" if `xref` is "container" and between "-2" and "3" if `xref` is "paper".
fig.update_coloraxes(colorbar_xanchor=<VALUE>)
"left"
| "center"
| "right"
)
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".
fig.update_coloraxes(colorbar_xpad=<VALUE>)
10
Sets the amount of padding (in px) along the x direction.
fig.update_coloraxes(colorbar_xref=<VALUE>)
"container"
| "paper"
) "paper"
Sets the container `x` refers to. "container" spans the entire `width` of the plot. "paper" refers to the width of the plotting area only.
fig.update_coloraxes(colorbar_y=<VALUE>)
Sets the y position with respect to `yref` of the color bar (in plot fraction). When `yref` is "paper", defaults to 0.5 when `orientation` is "v" and 1.02 when `orientation` is "h". When `yref` is "container", defaults to 0.5 when `orientation` is "v" and 1 when `orientation` is "h". Must be between "0" and "1" if `yref` is "container" and between "-2" and "3" if `yref` is "paper".
fig.update_coloraxes(colorbar_yanchor=<VALUE>)
"top"
| "middle"
| "bottom"
)
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".
fig.update_coloraxes(colorbar_ypad=<VALUE>)
10
Sets the amount of padding (in px) along the y direction.
fig.update_coloraxes(colorbar_yref=<VALUE>)
"container"
| "paper"
) "paper"
Sets the container `y` refers to. "container" spans the entire `height` of the plot. "paper" refers to the height of the plotting area only.
fig.update_coloraxes(colorscale=<VALUE>)
Sets the colorscale. The colorscale must be an array containing arrays mapping a normalized value to an rgb, rgba, hex, hsl, hsv, or named color string. At minimum, a mapping for the lowest (0) and highest (1) values are required. For example, `[[0, 'rgb(0,0,255)'], [1, 'rgb(255,0,0)']]`. To control the bounds of the colorscale in color space, use `cmin` and `cmax`. Alternatively, `colorscale` may be a palette name string of the following list: Blackbody,Bluered,Blues,Cividis,Earth,Electric,Greens,Greys,Hot,Jet,Picnic,Portland,Rainbow,RdBu,Reds,Viridis,YlGnBu,YlOrRd.
fig.update_coloraxes(reversescale=<VALUE>)
Reverses the color mapping if True. If True, `cmin` will correspond to the last color in the array and `cmax` will correspond to the first color.
fig.update_coloraxes(showscale=<VALUE>)
True
Determines whether or not a colorbar is displayed for this trace.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4