@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
21 lines (20 loc) • 458 B
TypeScript
export declare class Gauge {
type: "line" | "circle";
value: number;
minValue: number;
maxValue: number;
thickness: boolean;
showValue: boolean;
showMinMax: boolean;
ranges: GaugeRange[];
constructor(json: string);
/**
* Load Gauge object represented by the GaugeSDT.ToJson()
*/
fromJson(json: string): void;
}
export declare class GaugeRange {
name: string;
amount: number;
color: string;
}