Description Usage Arguments References See Also Examples
View source: R/chart_amBullet.R
amBullet computes a bullet chart of the given value.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
value |
|
min |
|
max |
|
val_color |
|
limit |
|
limit_color |
|
steps |
|
label |
|
horiz |
|
rates |
|
... |
see |
See online documentation https://datastorm-open.github.io/introduction_ramcharts/ and amChartsAPI
amOptions, amBarplot, amBoxplot, amHist, amPie, amPlot, amTimeSeries, amStockMultiSet, amBullet, amRadar, amWind, amFunnel, amAngularGauge, amSolidGauge, amMekko, amCandlestick, amFloatingBar, amOHLC, amWaterfall
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | amBullet(value = 65)
# 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.