initialize,GaugeArrow-method | R Documentation |
Uses the constructor to create the object with its properties or update an existing one with the setters.
## S4 method for signature 'GaugeArrow' initialize(.Object, alpha = 1, axis, ...) gaugeArrow(alpha = 1, axis, ...) setAxis(.Object, axis = NULL, ...) ## S4 method for signature 'GaugeArrow,GaugeAxisOrCharacterOrMissing' setAxis(.Object, axis = NULL, ...)
.Object |
GaugeArrow. |
alpha |
|
axis |
GaugeAxis. Axis of the arrow. You can use reference to the axis or id of the axis. If you don't set any axis, the first axis of the chart will be used. |
... |
other properties of GaugeArrow. |
(updated) .Object of class GaugeArrow.
# --- method initialize new("GaugeArrow", alpha = 2) # --- constructor gaugeArrow(value = 10) # -- update 'axis' property setAxis(.Object = gaugeArrow(), id = "axis1", startValue = 0, endValue = 100, valueInterval = 10) # equivalent to: axis_obj <- gaugeAxis(id = "axis1", startValue = 0, endValue = 100, valueInterval = 10) setAxis(.Object = gaugeArrow(), axis = axis_obj) # or, iff, 'axis_obj' has already been added to the chart setAxis(.Object = gaugeArrow(), axis = "axis1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.