Combo chart
import { ComboChart } from '@arshad-shah/swift-chart';
new ComboChart('#chart', { theme: 'midnight', lineSeries: ['target'] }) .setData(monthlySales, { x: 'month', y: ['revenue', 'cost', 'target'] });import { Combo } from '@arshad-shah/swift-chart/react';
<Combo data={monthlySales} mapping={{ x: 'month', y: ['revenue', 'cost', 'target'] }} lineSeries={['target']} theme="midnight" height={320}/>Reference
- Class:
ComboChart - React component:
Combo