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