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