amBullet {rAmCharts} | R Documentation |
Plotting bullet chart using rAmCharts
Description
amBullet computes a bullet chart of the given value.
Usage
amBullet(
value,
min = 0,
max = 100,
val_color = "#000000",
limit = 85,
limit_color = "#000000",
steps = TRUE,
label = "",
horiz = TRUE,
rates,
...
)
Arguments
value |
|
min |
|
max |
|
val_color |
|
limit |
|
limit_color |
|
steps |
|
label |
|
horiz |
|
rates |
|
... |
see |
References
See online documentation https://datastorm-open.github.io/introduction_ramcharts/ and amChartsAPI
See Also
amOptions, amBarplot, amBoxplot, amHist, amPie, amPlot, amTimeSeries, amStockMultiSet, amBullet, amRadar, amWind, amFunnel, amAngularGauge, amSolidGauge, amMekko, amCandlestick, amFloatingBar, amOHLC, amWaterfall
Examples
amBullet(value = 65)
## Not run:
# Other examples available which can be time consuming depending on your configuration.
# Remove steps for background
amBullet(value = 65, steps = FALSE)
# Tune the colors with name or HTML code
amBullet(value = 65, val_color = "purple", limit_color = "#3c8dbc")
# Change the orientation
amBullet(value = 65, steps = FALSE, horiz = FALSE)
# Add text
amBullet(value = 65, label = "Evaluation")
# Change min and max values
amBullet(value = 65, min = 20, max = 90)
## End(Not run)