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