highcharter (version 0.7.0)

hc_chart: Setting chart options to highchart objects

Description

Options regarding the chart area and plot area as well as general chart options.

Usage

hc_chart(hc, ...)

Arguments

hc

A highchart htmlwidget object.

Examples

Run this code
# NOT RUN {
data(citytemp)

hc <- highchart() %>% 
  hc_xAxis(categories = citytemp$month) %>% 
  hc_add_series(name = "Tokyo", data = citytemp$tokyo) %>% 
  hc_add_series(name = "London", data = citytemp$london)

hc %>% 
  hc_chart(type = "columnn",
           options3d = list(enabled = TRUE, beta = 15, alpha = 15))


hc %>% 
  hc_chart(borderColor = '#EBBA95',
           borderRadius = 10,
           borderWidth = 2,
           backgroundColor = list(
             linearGradient = c(0, 0, 500, 500),
             stops = list(
               list(0, 'rgb(255, 255, 255)'),
               list(1, 'rgb(200, 200, 255)')
             )))

# }

Run the code above in your browser using DataLab