R/C3Timeseries.R

Defines functions C3Timeseries C3TimeseriesOutput renderC3Timeseries

Documented in C3Timeseries C3TimeseriesOutput renderC3Timeseries

#' <Add Title>
#'
#' <Add Description>
#'
#' @import htmlwidgets
#'
#' @export
C3Timeseries <- function(value, chart_title, width = NULL, height = NULL, elementId = NULL) {

  # forward options using x
  x = list(
    values = value,
    chart_title = chart_title
  )

  # create widget
  htmlwidgets::createWidget(
    name = 'C3Timeseries',
    x,
    width = width,
    height = height,
    package = 'C3Test',
    elementId = elementId
  )
}

#' Shiny bindings for C3Timeseries
#'
#' Output and render functions for using C3Timeseries within Shiny
#' applications and interactive Rmd documents.
#'
#' @param outputId output variable to read from
#' @param width,height Must be a valid CSS unit (like \code{'100\%'},
#'   \code{'400px'}, \code{'auto'}) or a number, which will be coerced to a
#'   string and have \code{'px'} appended.
#' @param expr An expression that generates a C3Timeseries
#' @param env The environment in which to evaluate \code{expr}.
#' @param quoted Is \code{expr} a quoted expression (with \code{quote()})? This
#'   is useful if you want to save an expression in a variable.
#'
#' @name C3Timeseries-shiny
#'
#' @export
C3TimeseriesOutput <- function(outputId, width = '100%', height = '400px'){
  htmlwidgets::shinyWidgetOutput(outputId, 'C3Timeseries', width, height, package = 'C3Test')
}

#' @rdname C3Timeseries-shiny
#' @export
renderC3Timeseries <- function(expr, env = parent.frame(), quoted = FALSE) {
  if (!quoted) { expr <- substitute(expr) } # force quoted
  htmlwidgets::shinyRenderWidget(expr, C3TimeseriesOutput, env, quoted = TRUE)
}
JB-Sandbox/C3Test documentation built on Jan. 19, 2020, 12:23 a.m.