initialize,GaugeAxis-method {rAmCharts} | R Documentation |
Initializes a GaugeAxis
Description
Uses the constructor to create the object or update an existing one with the setters.
Usage
## S4 method for signature 'GaugeAxis'
initialize(.Object, axisAlpha = 1, bands, ...)
gaugeAxis(axisAlpha = 1, bands, ...)
setBands(.Object, bands)
## S4 method for signature 'GaugeAxis,list'
setBands(.Object, bands)
addBand(.Object, band = NULL, ...)
## S4 method for signature 'GaugeAxis,GaugeBandOrMissing'
addBand(.Object, band = NULL, ...)
Arguments
.Object |
|
axisAlpha |
|
bands |
|
... |
other properties of GaugeAxis. |
band |
GaugeBand.
Argument for method |
Examples
# --- 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)
[Package rAmCharts version 2.1.15 Index]