highcharter (version 0.7.0)

hc_plotOptions: Setting plot options to highchart objects

Description

The plotOptions is a wrapper object for config objects for each series type. The configuration objects for each series can also be overridden for each series item as given in the series array.

Usage

hc_plotOptions(hc, ...)

Arguments

hc

A highchart htmlwidget object.

Details

Configuration options for the series are given in three levels. Options for all series in a chart are given with the hc_plotOptions function. Then options for all series of a specific type are given in the plotOptions of that type, for example hc_plotOptions(line = list(...)). Next, options for one single series are given in the series array.

Examples

Run this code
# NOT RUN {
data(citytemp)

hc <- highchart() %>% 
  hc_plotOptions(line = list(color = "blue",
                             marker = list(
                               fillColor = "white",
                               lineWidth = 2,
                               lineColor = NULL
                               )
  )) %>%  
  hc_add_series(name = "Tokyo", data = citytemp$tokyo) %>% 
  hc_add_series(name = "London", data = citytemp$london,
               marker = list(fillColor = "black"))


hc

# override the `blue` option with the explicit parameter
hc %>% 
  hc_add_series(name = "London",
               data = citytemp$new_york,
               color = "red")

# }

Run the code above in your browser using DataLab