@visactor/react-vchart
Version:
The react version of VChart 4.x
11 lines (10 loc) • 499 B
TypeScript
import type React from 'react';
import type { ICirclePackingChartSpec } from '@visactor/vchart';
import type { BaseChartProps } from './BaseChart';
export interface CirclePackingChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<ICirclePackingChartSpec>, 'type'> {
}
export declare const CirclePackingChart: React.ForwardRefExoticComponent<CirclePackingChartProps & {
children?: React.ReactNode;
} & {
type?: 'circlePacking';
} & React.RefAttributes<any>>;