rAmCharts (version 1.1.2)

initialize,Label-method: Initialize

Description

Initialize

Usage

"initialize"(.Object, text, bold, x, y, ...)
label(text, bold, x, y, ...)
setBold(.Object, bold)
"setBold"(.Object, bold)
"setText"(.Object, text)
setX(.Object, x)
"setX"(.Object, x)
setY(.Object, y)
"setY"(.Object, y)

Arguments

.Object
Label.
text
character. Text of a title.
bold
character. Specifies if label is bold or not.
x
numeric. X position of a label.
y
numeric. Y position of a label.
...
Other properties.

Value

(updated) .Object of class Label.

Functions

  • label:

Examples

Run this code
new("Label", x = 10)
label(text = "bonjour")
setBold(.Object = label(), bold = TRUE)
setText(.Object = label(), text = "Bonjour")
setX(.Object = label(), x = 16)
setY(.Object = label(), y = 16)

Run the code above in your browser using DataCamp Workspace