fybdp-d3-kg
Version:
Knowledge Graph using React and D3.js
12 lines (11 loc) • 455 B
TypeScript
import { Component } from 'react';
import { ChartNestedDataShape } from '../common/data';
import { BarChartProps } from './BarChart';
interface StackedNormalizedBarChartProps extends BarChartProps {
data: ChartNestedDataShape[];
}
export declare class StackedNormalizedBarChart extends Component<StackedNormalizedBarChartProps, {}> {
static defaultProps: Partial<StackedNormalizedBarChartProps>;
render(): JSX.Element;
}
export {};