Skip to content

Bar chart

import { BarChart } from '@arshad-shah/swift-chart';
const chart = new BarChart('#chart', { theme: 'midnight' });
chart.setData(monthlySales, { x: 'month', y: ['revenue', 'cost'] });

Common options

Single-series with negatives

Reference