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