export_hc: Function to export js file the configuration options

View source: R/export_hc.R

export_hcR Documentation

Function to export js file the configuration options

Description

Function to export js file the configuration options

Usage

export_hc(hc, filename = NULL, as = "is", name = NULL)

Arguments

hc

A Highcharts object.

filename

String of the exported file.

as

String to define how to save the configuration options. One of 'is', 'container', 'variable'.

name

A variable used to put as name of the generated object if as is 'variable' and the css/js selector if is as is container.

Examples


fn <- "function(){
  console.log('Category: ' + this.category);
  alert('Category: ' + this.category);
}"

hc <- highcharts_demo() %>%
  hc_plotOptions(
    series = list(
      cursor = "pointer",
      point = list(
        events = list(
          click = JS(fn)
        )
      )
    )
  )
## Not run: 
export_hc(hc, filename = "~/hc_is.js", as = "is")
export_hc(hc, filename = "~/hc_vr.js", as = "variable", name = "objectname")
export_hc(hc, filename = "~/hc_ct.js", as = "container", name = "#selectorid")

## End(Not run)


jbkunst/highcharter documentation built on March 14, 2024, 12:52 a.m.