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