Gauge Indicator
The Method To Use
order: int
value: inttitle: Optional[str] # Title that shows in the left
description: Optional[str] # Text that shows below the title
rows_size: Optional[int] # How many rows does it occupy, by default = 1
cols_size: Optional[int] # How many columns does it occupy, by default = 6
color: Union[str, int] # Color of the gaugeExamples
s.plt.gauge_indicator(
order=0,
value=42,
title="Gauge Indicator",
description="composite chart",
)
s.plt.gauge_indicator(
order=2,
value=24,
title="Gauge Indicator",
description="composite chart",
color=2
)

Last updated
Was this helpful?