addGuide,AxisBase,GuideOrMissing-method {rAmCharts} | R Documentation |
Add a Guide for AxisBase
Description
Update an object of inherited class AxisBase.
Usage
## S4 method for signature 'AxisBase,GuideOrMissing'
addGuide(.Object, guide = NULL, ...)
Arguments
.Object |
children class of AxisBase. |
guide |
(optional) Guide. |
... |
properties of Guide
Argument for method |
Value
(possibly updated) .Object of class AxisBase.
Examples
addGuide(.Object = valueAxis(), fillAlpha = .4, adjustBorderColor = TRUE, gridThickness = 1)
# equivalent to:
guide_obj <- guide(fillAlpha = .4, adjustBorderColor = TRUE, gridThickness = 1)
addGuide(.Object = valueAxis(), guide = guide_obj)
[Package rAmCharts version 2.1.15 Index]