@visactor/react-vchart
Version:
The react version of VChart 4.x
8 lines (7 loc) • 349 B
TypeScript
import type { BaseSeriesProps } from './BaseSeries';
import type { IBar3dSeriesSpec } from '@visactor/vchart-extension';
export type Bar3dProps = BaseSeriesProps & Omit<IBar3dSeriesSpec, 'type'>;
export declare const Bar3d: import("react").FC<BaseSeriesProps & Omit<IBar3dSeriesSpec, "type"> & {
updateId?: number;
componentId?: string;
}>;