initialize,GaugeBand-method {rAmCharts} | R Documentation |
Initializes a GaugeBand
Description
Uses the constructor to create the object or update an existing one with the setters.
Usage
## S4 method for signature 'GaugeBand'
initialize(.Object, alpha = 1, id, ...)
gaugeBand(alpha = 1, id, ...)
setID(.Object, id)
## S4 method for signature 'GaugeBand'
setID(.Object, id)
Arguments
.Object |
GaugeBand (or "GaugeBand" for initialize). |
alpha |
|
id |
|
... |
other properties of GaugeBand. |
Value
(updated) .Object of class GaugeBand.
Examples
# --- method 'initialize'
new("GaugeBand")
# --- constructor
gaugeBand(alpha = 2, id = "band2")
# --- set the 'id'
setID(.Object = gaugeBand(), id = "1")
[Package rAmCharts version 2.1.15 Index]