R/hello.R

Defines functions hello

Documented in hello

#' <Add Title>
#'
#' <Add Description>
#'
#' @import htmlwidgets
#'
#' @export
hello <- function(message = "Hello world!", width = NULL, height = NULL) {
  
  # forward options using x
  x = list(
    message = message
  )
  
  # create widget
  htmlwidgets::createWidget(
    name = 'hello',
    x,
    width = width,
    height = height,
    package = 'radarchart'
  )
}
shaneporter/radarchart documentation built on May 29, 2019, 8:07 p.m.