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