UNPKG

reaviz

Version:

Data Visualization using React

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