JavaScript Gauge Chart

This example shows a basic view of the new reworked gauge chart.

The gauge can be created with a simple line of code.

const gauge = lightningChart().Gauge()

After creating the Gauge Chart the value for it can be set simply.

gauge
    // Set start and end values.
    .setInterval(0, 120)
    // Set the displayed value.
    .setValue(60)
    // Set the unit label of the value.
    .setUnitLabel('km/h')