spider.d.ts 389 B

1234567
  1. import { Coordinate } from '@antv/coord';
  2. import { Vector2 } from '../../../runtime';
  3. import { LabelPosition } from './default';
  4. /**
  5. * Spider label transform only suitable for the labels in polar coordinate, labels should distinguish coordinate type.
  6. */
  7. export declare function spider(position: LabelPosition, points: Vector2[], value: Record<string, any>, coordinate: Coordinate): any;