@visactor/react-vchart
Version:
The react version of VChart 4.x
6 lines (5 loc) • 315 B
TypeScript
import type { IDiscreteLegendSpec } from '@visactor/vchart';
import { LegendEventProps } from '../eventsUtils';
import { BaseComponentProps } from './BaseComponent';
export type LegendProps = BaseComponentProps & IDiscreteLegendSpec & LegendEventProps;
export declare const Legend: import("react").FC<LegendProps>;