GaugeViewArgs

data class GaugeViewArgs(val lowerBound: Output<Double>? = null, val upperBound: Output<Double>? = null) : ConvertibleToJava<GaugeViewArgs>

A gauge chart shows where the current value sits within a pre-defined range. The upper and lower bounds should define the possible range of values for the scorecard's query (inclusive).

Constructors

Link copied to clipboard
constructor(lowerBound: Output<Double>? = null, upperBound: Output<Double>? = null)

Properties

Link copied to clipboard
val lowerBound: Output<Double>? = null

The lower bound for this gauge chart. The value of the chart should always be greater than or equal to this.

Link copied to clipboard
val upperBound: Output<Double>? = null

The upper bound for this gauge chart. The value of the chart should always be less than or equal to this.

Functions

Link copied to clipboard
open override fun toJava(): GaugeViewArgs