UNPKG

fybdp-d3-kg

Version:

Knowledge Graph using React and D3.js

12 lines (11 loc) 462 B
import { Component } from 'react'; import { AreaChartProps } from './AreaChart'; import { ChartNestedDataShape } from '../common/data'; interface StackedNormalizedAreaChartProps extends AreaChartProps { data: ChartNestedDataShape[]; } export declare class StackedNormalizedAreaChart extends Component<StackedNormalizedAreaChartProps, {}> { static defaultProps: Partial<StackedNormalizedAreaChartProps>; render(): JSX.Element; } export {};