Learn R Programming

rAmCharts (version 2.0.2)

initialize,GaugeArrow-method: Initializes a GaugeArrow

Description

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

Usage

"initialize"(.Object, alpha = 1, axis, ...)
gaugeArrow(alpha = 1, axis, ...)
setAxis(.Object, axis = NULL, ...)
"setAxis"(.Object, axis = NULL, ...)

Arguments

.Object
GaugeArrow.
alpha
numeric.
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.

Value

(updated) .Object of class GaugeArrow.

Examples

Run this code
# --- 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")

Run the code above in your browser using DataLab