reaviz
Version:
Data Visualization using React
13 lines (12 loc) • 401 B
TypeScript
import { FC } from 'react';
import { AreaChartProps } from '../AreaChart';
import { ChartShallowDataShape } from '../common/data';
export interface AreaSparklineChartProps extends AreaChartProps {
/**
* Data the chart will receive to render.
*
* @default []
*/
data: ChartShallowDataShape[];
}
export declare const AreaSparklineChart: FC<Partial<AreaSparklineChartProps>>;