graphical.heat
Heat
Heat(
data,
value_range,
scheme,
*,
orientation=None,
repeat_x=None,
repeat_y=None,
)
Single or double value cell for a heatmap or density graph.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Union[float, Tuple[float, float]]
|
The value(s). |
required |
|
Tuple[float, float]
|
Lower and upper boundary. |
required |
|
SequentialScheme
|
Color scheme. |
required |
|
Literal[horizontal, vertical]
|
The stacking direction if two values are supplied. Defaults to "horizontal". |
None
|
|
int
|
Repeat (widen) heat cell horizontally. No repeats if None. |
None
|
|
int
|
Repeat (lengthen) heat cell vertically. No repeats if None. |
None
|