Stacked area chart
import { StackedAreaChart } from '@arshad-shah/swift-chart';
const chart = new StackedAreaChart('#chart', { theme: 'midnight' });chart.setData(stacked, { x: 'day', y: ['api', 'web', 'mobile'] });import { StackedArea } from '@arshad-shah/swift-chart/react';
<StackedArea data={stacked} mapping={{ x: 'day', y: ['api', 'web', 'mobile'] }} theme="midnight" height={320}/>Reference
- Class:
StackedAreaChart - React component:
StackedArea