Bar chart
import { BarChart } from '@arshad-shah/swift-chart';
const chart = new BarChart('#chart', { theme: 'midnight' });chart.setData(monthlySales, { x: 'month', y: ['revenue', 'cost'] });import { Bar } from '@arshad-shah/swift-chart/react';
<Bar data={monthlySales} mapping={{ x: 'month', y: ['revenue', 'cost'] }} theme="midnight" height={320}/>