UNPKG

reaviz

Version:

Data Visualization using React

9 lines (7 loc) 335 B
import { FC } from 'react'; import { AreaChartProps } from './AreaChart'; import { ChartNestedDataShape } from '../common/data'; export interface StackedNormalizedAreaChartProps extends AreaChartProps { data: ChartNestedDataShape[]; } export declare const StackedNormalizedAreaChart: FC<Partial<StackedNormalizedAreaChartProps>>;