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