Speed Gauge

Speed gauge chart is a type of data visualization often used to display a single data value with a quantitative context. The advantage of this chart lays in the fact that it’s easy to interpret, useful in situations where the expected value of the data is already known.

The Method To Use

The method is s.plt.speed_gauge()

The speed gauge s a gauge (a meter) that collects and displays the instantaneous value of a measurable quantity.

1. Default Configuration

This can be achieved using:

s.plt.speed_gauge(
    name='Third', value=60, order=0,
    min_value=0, max_value=100,
    rows_size=2, cols_size=12,
)

2. Customization And Context

It is possible to personalize the title of the chart and change data at will. Padding controls the position of the gauge on the page.

This can be achieved using:

s.plt.speed_gauge(
    name='Third', value=60, order=0,
    rows_size=2, cols_size=12,
    min_value=0, max_value=100,
    padding='0,0,0,2', title='Speed (km/h)',
)

Changing the Menu Path The menu_path can be modified.

Using the Grid

It is possible to use any number of rows.

Last updated