lcarsOutput: Create an LCARS output (client side)

lcarsOutputR Documentation

Create an LCARS output (client side)

Description

UI-side functions for creating dynamic lcarBox and lcarsSweep.

Usage

lcarsBoxOutput(outputId)

lcarsSweepOutput(outputId)

Arguments

outputId

Output variable name.

See Also

renderLcars for the corresponding server-side function.

Examples

## Only run examples in interactive R sessions
if (interactive()) {

  ui <- lcarsPage(
    lcarsBoxOutput("box"),
    lcarsSweepOutput("sweep")
  )

  server <- function(input, output) {
    output$box <- renderLcarsBox({
      lcarsBox()
    })
    output$sweep <- renderLcarsSweep({
      lcarsSweep()
    })
  }

  shinyApp(ui, server)
}

lcars documentation built on Sept. 10, 2023, 9:07 a.m.