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.
18 lines
461 B
18 lines
461 B
4 years ago
|
import { TimeSerie, Options } from '@chartwerk/base';
|
||
|
export declare enum Stat {
|
||
|
CURRENT = "current",
|
||
|
MIN = "min",
|
||
|
MAX = "max",
|
||
|
TOTAL = "total"
|
||
|
}
|
||
|
export declare type GaugeTimeSerie = TimeSerie;
|
||
|
export declare type GaugeOptionsParams = {
|
||
|
innerRadius: number;
|
||
|
outerRadius: number;
|
||
|
maxValue: number;
|
||
|
stops: number[];
|
||
|
colors: string[];
|
||
|
stat: Stat;
|
||
|
};
|
||
|
export declare type GaugeOptions = Options & Partial<GaugeOptionsParams>;
|