initialize,Label-method {rAmCharts} | R Documentation |
Initializes Label
Description
Uses the constructor to create the object or update an existing one with the setters.
Usage
## S4 method for signature 'Label'
initialize(.Object, text, bold, x, y, ...)
label(text, bold, x, y, ...)
setBold(.Object, bold)
## S4 method for signature 'Label,logical'
setBold(.Object, bold)
## S4 method for signature 'Label,character'
setText(.Object, text)
setX(.Object, x)
## S4 method for signature 'Label,numericOrCharacter'
setX(.Object, x)
setY(.Object, y)
## S4 method for signature 'Label,numericOrCharacter'
setY(.Object, y)
Arguments
.Object |
|
text |
|
bold |
|
x |
|
y |
|
... |
other properties of Label. |
Value
(updated) .Object of class Label.
Examples
# --- method initialize
new("Label", x = 10)
# --- constructor
label(text = "bonjour")
label(text = "Male", x = "28%", y = "97%")
# --- update property 'bold'
setBold(.Object = label(), bold = TRUE)
# --- update 'text'
setText(.Object = label(), text = "Bonjour")
# --- update 'x'
setX(.Object = label(), x = 16)
# --- update 'y'
setY(.Object = label(), y = 16)
[Package rAmCharts version 2.1.15 Index]