R/justgage.R

Defines functions justgage

#' @export
justgage <- function(title, value, min, max, label = NULL,
  width = NULL, height = NULL) {

  x <- list(
    title = title,
    value = value,
    min = min,
    max = max,
    label = label
  )
  
  htmlwidgets::createWidget("justgage", x, width = width, height = height)
}
jjallaire/justgage documentation built on May 19, 2019, 11:37 a.m.