Place arcgisChartOutput() in a Shiny UI and renderArcgisChart() in the
server.
Usage
arcgisChartOutput(outputId, width = "100%", height = "400px")
renderArcgisChart(expr, env = parent.frame(), quoted = FALSE)Arguments
- outputId
Defines which output variable the chart is read from.
- width, height
default
"100%"and"400px". Defines the output size, passed tohtmlwidgets::shinyWidgetOutput().- expr
Defines the expression that generates the chart.
- env
default
parent.frame(). Defines whereexpris evaluated.- quoted
default
FALSE. Defines whetherexpris already quoted.