surround.d.ts 342 B

1234567
  1. import { Coordinate } from '@antv/coord';
  2. import { Vector2 } from '../../../runtime';
  3. import { LabelPosition } from './default';
  4. /**
  5. * Surround label transform is used to make labels surround circular.
  6. */
  7. export declare function surround(position: LabelPosition, points: Vector2[], value: Record<string, any>, coordinate: Coordinate): any;