Skip to content

Gauge chart

import { GaugeChart } from '@arshad-shah/swift-chart';
const chart = new GaugeChart('#chart', {
theme: 'midnight',
min: 0,
max: 100,
segments: [
{ to: 60, color: '#5b8cff' },
{ to: 85, color: '#ffa45b' },
{ to: 100, color: '#ff5b5b' },
],
});
chart.setData([72]);