initialize,ChartScrollbar-method | R Documentation |
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.
## 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)
.Object |
ChartScrollbar. |
graph |
AmGraph. Specifies which graph will be displayed in the scrollbar. |
enabled |
|
... |
other properties of ChartScrollbar. Run : api("ChartScrollbar") for more information. |
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.