UNPKG

@visactor/react-vchart

Version:

The react version of VChart 4.x

11 lines (10 loc) 497 B
import type React from 'react'; import type { BaseChartProps } from './BaseChart'; import type { IHistogram3dChartSpec } from '@visactor/vchart-extension'; export interface Histogram3dChartProps extends Omit<BaseChartProps, 'container' | 'type' | 'data'>, Omit<Partial<IHistogram3dChartSpec>, 'type'> { } export declare const Histogram3dChart: React.ForwardRefExoticComponent<Histogram3dChartProps & { children?: React.ReactNode; } & { type?: 'histogram3d'; } & React.RefAttributes<any>>;