MAIDR Documentation - v4.4.0
    Preparing search index...

    The subset of google.visualization.Gauge's draw options that decide what a dial means rather than what it looks like.

    The adapter is handed the chart, the DataTable and the container, never the options, and a gauge keeps its whole scale in the options: without them a dial's value has no range to sit in and no band to land in, which is the entire reading. Pass the same object given to chart.draw(…).

    interface GoogleGaugeOptions {
        min?: number;
        max?: number;
        greenFrom?: number;
        greenTo?: number;
        yellowFrom?: number;
        yellowTo?: number;
        redFrom?: number;
        redTo?: number;
    }
    Index

    Properties

    min?: number

    Lower end of every dial. Google's own default is 0.

    max?: number

    Upper end of every dial. Google's own default is 100.

    greenFrom?: number

    Lower edge of the green band.

    greenTo?: number

    Upper edge of the green band.

    yellowFrom?: number

    Lower edge of the yellow band.

    yellowTo?: number

    Upper edge of the yellow band.

    redFrom?: number

    Lower edge of the red band.

    redTo?: number

    Upper edge of the red band.