interface Gauge {
    axis: Partial<Axis>;
    bar: Partial<GaugeBar>;
    bgcolor: Color;
    bordercolor: Color;
    borderwidth: number;
    shape: "angular" | "bullet";
    steps: {
        color: Color;
        range: number[];
    }[];
    threshold: Partial<Threshold>;
}

Properties

axis: Partial<Axis>
bgcolor: Color
bordercolor: Color
borderwidth: number
shape: "angular" | "bullet"
steps: {
    color: Color;
    range: number[];
}[]
threshold: Partial<Threshold>