Learn R Programming

ShinyDash (version 0.0.1)

areaGraphOutput: Render an area graph widget within an application page.

Description

Render an area graph widget within an application page.

Usage

areaGraphOutput(outputId, width, height, ...)

Arguments

outputId
output variable which will be used in addressing update messages.
width
Graph width. Must be a valid CSS unit (like "100%", "400px", "auto") or a number, which will be coerced to a string and have "px" appended.
height
Graph height Must be a valid CSS unit (like "100%", "400px", "auto") or a number, which will be coerced to a string and have "px" appended.
...
Additional arguments to be passed to graphOutput.

See Also

observe graphOutput

Examples

Run this code
## Not run: 
# #in ui.R
# shinyUI(bootstrapPage(#'
#  gridster(tile.width = 200, tile.height = 200,
#    gridsterItem(col = 1, row = 1, size.x = 1, size.y = 1,
#      areaGraphOutput("myGraph", "150px", "150px")
#    ),
#    gridsterItem(col = 2, row = 1, size.x = 1, size.y = 1,
#      textOutput("myText")
#    ),
#    gridsterItem(col = 1, row = 2, size.x = 2, size.y = 1,
#      plotOutput("myPlot", height = 200)
#    )
#  )
# )
# 
# #The corresponding server.R
# shinyServer(function(input, output, session) {
#  sendGraphData("myGraph", {
#    list(
#      y0 = 13,
#      y1 = 15.3
#    )
#  })
# }
# ## End(Not run)

Run the code above in your browser using DataLab