mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-23 04:11:53 +02:00
22 lines
570 B
TypeScript
22 lines
570 B
TypeScript
|
export default class CategoryScale extends Scale {
|
||
|
static id: string;
|
||
|
/**
|
||
|
* @type {any}
|
||
|
*/
|
||
|
static defaults: any;
|
||
|
/** @type {number} */
|
||
|
_startValue: number;
|
||
|
_valueRange: number;
|
||
|
_addedLabels: any[];
|
||
|
init(scaleOptions: any): void;
|
||
|
parse(raw: any, index: any): number;
|
||
|
buildTicks(): {
|
||
|
value: any;
|
||
|
}[];
|
||
|
getLabelForValue(value: any): any;
|
||
|
getPixelForValue(value: any): number;
|
||
|
getPixelForTick(index: any): number;
|
||
|
getValueForPixel(pixel: any): number;
|
||
|
}
|
||
|
import Scale from "../core/core.scale.js";
|