ticks.d.ts 605 B

12345678910
  1. import { type StandardAnimationOption } from '../../../animation';
  2. import type { Vector2 } from '../../../types';
  3. import { Selection } from '../../../util';
  4. import type { AxisDatum, RequiredAxisStyleProps } from '../types';
  5. export declare function getTickVector(value: number, attr: RequiredAxisStyleProps): Vector2;
  6. export declare const getTickPoints: {
  7. (...args: any[]): any;
  8. cache: Map<any, any>;
  9. };
  10. export declare function renderTicks(container: Selection, axisData: AxisDatum[], attr: RequiredAxisStyleProps, animate: StandardAnimationOption): import("../../../animation").AnimationResult[];