initialize,ChartScrollbar-method {rAmCharts} | R Documentation |
Initializes a ChartScrollbar
Description
ChartScrollbarSettings sets settings for chart scrollbar.
If you change a property after the chart is initialized,
you should call stockChart.validateNow() method.
If there is no default value specified, default value of ChartScrollbar class will be used.
Run api("ChartScrollbarSettings")
for more informations.
Usage
## S4 method for signature 'ChartScrollbar'
initialize(.Object, graph, enabled, ...)
chartScrollbar(graph, enabled = TRUE, ...)
chartScrollbarSettings(graph, enabled = TRUE, ...)
## S4 method for signature 'ChartScrollbar,AmGraphOrCharacterOrMissing'
setGraph(.Object, graph = NULL, ...)
setEnabled(.Object, enabled)
## S4 method for signature 'ChartScrollbar,logical'
setEnabled(.Object, enabled)
Arguments
.Object |
|
graph |
AmGraph. Specifies which graph will be displayed in the scrollbar. |
enabled |
|
... |
other properties of ChartScrollbar. Run : api("ChartScrollbar") for more information. |
Examples
new("ChartScrollbar", graph = "g1")
new("ChartScrollbar", graph = amGraph(test = 1))
chartScrollbar()
chartScrollbar(enabled = TRUE)
chartScrollbar()
chartScrollbar(enabled = TRUE)
# chartScrollbar with default graph
setGraph(.Object = chartScrollbar())
# example with arguments
setGraph(.Object = chartScrollbar(), id = "graph1", balloonText = "performance")
# equivalent to:
graph_obj <- amGraph(id = "graph1", balloonText = "performance")
(chartScrollbar_obj <- setGraph(.Object = chartScrollbar(), graph = graph_obj))
# or, iff graph_obj has alreadey been added to the chart:
setGraph(.Object = chartScrollbar(), graph = "graph1")
# ---
setEnabled(.Object = chartScrollbar(), enabled = TRUE)
[Package rAmCharts version 2.1.15 Index]