@visactor/vrender-components
Version:
components library for dp visualization
12 lines (11 loc) • 358 B
TypeScript
import { type IText } from '@visactor/vrender-core';
import type { CustomMethod } from '../type';
type HideConfig = {
orient: string;
method?: 'parity' | 'greedy' | CustomMethod;
separation?: number;
lastVisible?: boolean;
firstVisible?: boolean;
};
export declare function autoHide(labels: IText[], config: HideConfig): void;
export {};