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