@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 { IBar3dChartSpec } from '@visactor/vchart-extension';
import type { BaseChartProps } from './BaseChart';
export interface Bar3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IBar3dChartSpec>, 'type'> {
}
export declare const Bar3dChart: React.ForwardRefExoticComponent<Bar3dChartProps & {
children?: React.ReactNode;
} & {
type?: 'bar3d';
} & React.RefAttributes<any>>;