Interface GaugeOptions<GaugeChartType>

Interface that can be used to define GaugeChart configurations, when inside a Dashboard, that can't be changed after creation.

Example usage:

// Gauge Chart* with default type
undefined
// Gauge Chart* with specified type
{ gaugeOptions: { **type:** *GaugeChartTypes*.Solid } }

Type Parameters

Hierarchy

Properties

columnIndex: number

Column index on dashboard (X location, 0 = left)

columnSpan?: number

Column span (X width), default = 1

disableAnimations?: boolean

Optional flag that can be used to disable all animations by default.

rowIndex: number

Row index on dashboard (Y location, 0 = top)

rowSpan?: number

Row span (Y height), default = 1

type?: GaugeChartType

Interface for specifying desired "type" of Gauge Chart. This can be used to select different gauge types.

Note, at this time, there is only a single type available, leaving this API effectively unusable.

Options are located in GaugeChartTypes collection. If undefined, will default to Solid.