UNPKG

reaviz

Version:

Data Visualization using React

13 lines (12 loc) 392 B
import { FC } from 'react'; import { AreaChartProps } from './AreaChart'; import { ChartNestedDataShape } from '../common/data'; export interface StackedAreaChartProps extends AreaChartProps { /** * Data the chart will receive to render. * * @default [] */ data: ChartNestedDataShape[]; } export declare const StackedAreaChart: FC<Partial<StackedAreaChartProps>>;