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.
35 lines
927 B
35 lines
927 B
export default class BubbleController extends DatasetController { |
|
static id: string; |
|
/** |
|
* @type {any} |
|
*/ |
|
static overrides: any; |
|
/** |
|
* Parse array of primitive values |
|
* @protected |
|
*/ |
|
protected parsePrimitiveData(meta: any, data: any, start: any, count: any): any; |
|
/** |
|
* Parse array of arrays |
|
* @protected |
|
*/ |
|
protected parseArrayData(meta: any, data: any, start: any, count: any): any; |
|
/** |
|
* Parse array of objects |
|
* @protected |
|
*/ |
|
protected parseObjectData(meta: any, data: any, start: any, count: any): any; |
|
/** |
|
* @protected |
|
*/ |
|
protected getMaxOverflow(): number; |
|
/** |
|
* @protected |
|
*/ |
|
protected getLabelAndValue(index: any): { |
|
label: any; |
|
value: string; |
|
}; |
|
update(mode: any): void; |
|
} |
|
import DatasetController from "../core/core.datasetController.js";
|
|
|