20 lines
480 B
TypeScript
20 lines
480 B
TypeScript
|
export default class RadarController extends DatasetController {
|
||
|
static id: string;
|
||
|
/**
|
||
|
* @type {any}
|
||
|
*/
|
||
|
static overrides: any;
|
||
|
/**
|
||
|
* @protected
|
||
|
*/
|
||
|
protected getLabelAndValue(index: any): {
|
||
|
label: any;
|
||
|
value: string;
|
||
|
};
|
||
|
parseObjectData(meta: any, data: any, start: any, count: any): {
|
||
|
r: unknown;
|
||
|
}[];
|
||
|
update(mode: any): void;
|
||
|
}
|
||
|
import DatasetController from "../core/core.datasetController.js";
|