initialize,GaugeAxis-method | R Documentation |
Uses the constructor to create the object or update an existing one with the setters.
## 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, ...)
.Object |
GaugeAxis. |
axisAlpha |
|
bands |
|
... |
other properties of GaugeAxis. |
band |
GaugeBand.
Argument for method |
# --- 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.