initialize,ChartCursor-method | R Documentation |
Initializes or updates a ChartCursor.
## S4 method for signature 'ChartCursor' initialize(.Object, oneBalloonOnly, valueLineAxis, ...) chartCursor(animationDuration = 0.3, oneBalloonOnly, valueLineAxis, ...) setOneBalloonOnly(.Object, oneBalloonOnly) ## S4 method for signature 'ChartCursor,logical' setOneBalloonOnly(.Object, oneBalloonOnly) setValueLineAxis(.Object, valueLineAxis = NULL, ...) ## S4 method for signature 'ChartCursor,ValueAxisOrCharacterOrMissing' setValueLineAxis(.Object, valueLineAxis = NULL, ...)
.Object |
ChartCursor. |
oneBalloonOnly |
|
valueLineAxis |
ValueAxis. If you set valueLineBalloonEnabled to TRUE, but you have more than one axis, you can use this property to indicate which axis should display balloon. |
... |
other properties of ChartCursor. Run : api("ChartCursor") for more information. |
animationDuration |
|
(updated) .Object of class ChartCursor.
new("ChartCursor", oneBalloonOnly = TRUE) chartCursor() chartCursor(oneBalloonOnly = TRUE) setOneBalloonOnly(.Object = chartCursor(), oneBalloonOnly = TRUE) setValueLineAxis(.Object = chartCursor(), id = "valueAxis1", title = "Hello !", axisTitleOffset = 12) # equivalent to: valueLineAxis_obj <- valueAxis(id = "valueAxis1", title = "Hello !", axisTitleOffset = 12) setValueLineAxis(.Object = chartCursor(), valueLineAxis = valueLineAxis_obj) # or iff 'valueLineAxis_obj' has already been added to the chart: setValueLineAxis(.Object = chartCursor(), valueLineAxis = "valueAxis1")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.