first commit
This commit is contained in:
21
wwwroot/lib/chart-js/scales/scale.category.d.ts
vendored
Normal file
21
wwwroot/lib/chart-js/scales/scale.category.d.ts
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
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";
|
||||
Reference in New Issue
Block a user