amSolidGauge {rAmCharts} | R Documentation |
Plotting solid gauge using rAmCharts
Description
amSolidGauge computes a gauge of the given value.
Usage
amSolidGauge(
x,
min = 0,
max = 100,
type = "full",
width = 20,
color = "",
text = "",
textSize = 20,
...
)
Arguments
x |
|
min |
|
max |
|
type |
|
width |
|
color |
|
text |
|
textSize |
|
... |
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
## Not run:
amSolidGauge(x = 65)
# Other examples available which can be time consuming depending on your configuration.
if (requireNamespace("pipeR", quietly = TRUE)) {
require(pipeR)
# Change min and max values
amSolidGauge(x = 65, min = 0, max = 200)
# Semi solid gauge
amSolidGauge(x = 65, type = "semi")
# Change width
amSolidGauge(x = 65, width = 50)
# Change color
amSolidGauge(x = 65, color = "#2F4F4F")
# Put a color scale
amSolidGauge(x = 10, color = c("#00ff00", "#ffd700", "#ff0000"))
amSolidGauge(x = 35, color = c("#00ff00", "#ffd700", "#ff0000"))
amSolidGauge(x = 70, color = c("#00ff00", "#ffd700", "#ff0000"))
amSolidGauge(x = 90, color = c("#00ff00", "#ffd700", "#ff0000"))
# Add some text to the printed value
amSolidGauge(x = 65, text = "Pct")
# Modify textSize value
amSolidGauge(x = 65, text = "Pct", textSize = 50)
}
## End(Not run)
[Package rAmCharts version 2.1.15 Index]