reaviz
Version:
Data Visualization using React
13 lines (12 loc) • 416 B
TypeScript
import { FC } from 'react';
import { ChartNestedDataShape } from '../common/data';
import { BarChartProps } from './BarChart';
export interface StackedNormalizedBarChartProps extends BarChartProps {
/**
* Data the chart will receive to render.
*
* @default []
*/
data: ChartNestedDataShape[];
}
export declare const StackedNormalizedBarChart: FC<Partial<StackedNormalizedBarChartProps>>;