R/d3BarGraph.R

Defines functions d3BarGraph d3BarGraphOutput renderD3BarGraph

Documented in d3BarGraph d3BarGraphOutput renderD3BarGraph

#' D3BarGraph from R
#'
#' Making a bar graph with D3 and R
#'
#'
#' @param x a numerical list of values. Used for bar height
#' @param height numeric height for the graph's height in pixels.
#' @param width numeric width for the graph's width in pixels.
#' @return hopefully a graph...and not just a blank screen
#'
#' @import htmlwidgets
#'
#' @export
d3BarGraph <- function(x, width = NULL, height = NULL) {
    df<- data.frame(x=x)
  #return(barData)

  # forward options using params list
  options = list(height=height, width=width)

  params = list(data=df, options=options)



  # create widget
  htmlwidgets::createWidget(
    name = 'd3BarGraph',
    params,
    width = width,
    height = height,
    htmlwidgets::sizingPolicy(padding = 10, browser.fill = TRUE),
    package = 'd3BarGraph'
  )
}

#' Shiny bindings for d3BarGraph
#'
#' Output and render functions for using d3BarGraph 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 d3BarGraph
#' @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 d3BarGraph-shiny
#'
#' @export
d3BarGraphOutput <- function(outputId, width = '100%', height = '400px'){
  shinyWidgetOutput(outputId, 'd3BarGraph', width, height, package = 'd3BarGraph')
}

#' @rdname d3BarGraph-shiny
#' @export
renderD3BarGraph <- function(expr, env = parent.frame(), quoted = FALSE) {
  if (!quoted) { expr <- substitute(expr) } # force quoted
  shinyRenderWidget(expr, d3BarGraphOutput, env, quoted = TRUE)
}
ngfrey/d3BarGraph documentation built on May 23, 2019, 4:42 p.m.