You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
591 B

4 months ago
import { TickMethod } from '../types';
export declare const DEFAULT_Q: number[];
export declare const ALL_Q: number[];
/**
* An Extension of Wilkinson's Algorithm for Position Tick Labels on Axes
* https://www.yuque.com/preview/yuque/0/2019/pdf/185317/1546999150858-45c3b9c2-4e86-4223-bf1a-8a732e8195ed.pdf
* @param dMin
* @param dMax
* @param m tick个数
* @param onlyLoose minmax[3, 97]
* @param Q nice numbers集合
* @param w
*/
export declare const wilkinsonExtended: TickMethod;