rAmCharts (version 2.1.15)

initialize,GaugeAxis-method: Initializes a GaugeAxis

Description

Uses the constructor to create the object or update an existing one with the setters.

Usage

# S4 method for GaugeAxis
initialize(.Object, axisAlpha = 1, bands, ...)

gaugeAxis(axisAlpha = 1, bands, ...)

setBands(.Object, bands)

# S4 method for GaugeAxis,list setBands(.Object, bands)

addBand(.Object, band = NULL, ...)

# S4 method for GaugeAxis,GaugeBandOrMissing addBand(.Object, band = NULL, ...)

Arguments

.Object

GaugeAxis.

axisAlpha

numeric.

bands

list of GaugeBand. Bands are used to draw color fills between specified values.

...

other properties of GaugeAxis.

band

GaugeBand. Argument for method addBand.

Examples

Run this code
# --- method initialize
new("GaugeAxis", alpha = 1)

# -- constructor
gaugeAxis()

# -- update 'bands' at once
bands <- list(gaugeBand(startValue = 70, endValue = 90),
              gaugeBand(startValue = 40, endValue = 60))
gaugeAxis(bands = bands)

# --- add 'band' one by one one
addBand(.Object = gaugeAxis(), startValue = 0, endValue = 100)
# equivalent to
gaugeBand_obj <- gaugeBand(startValue = 0, endValue = 100)
addBand(.Object = gaugeAxis(), band = gaugeBand_obj)

Run the code above in your browser using DataLab