highcharter (version 0.7.0)

hc_theme: Highchart theme constructor

Description

Function to create highcharts themes.

Usage

hc_theme(...)

Arguments

...

A named parameters.

Details

More examples are in http://www.highcharts.com/docs/chart-design-and-style/themes.

Examples

Run this code
# NOT RUN {
hc <- highcharts_demo()

hc

thm <- hc_theme(
 colors = c('red', 'green', 'blue'),
 chart = list(
 backgroundColor = "#15C0DE"
 ),
 title = list(
   style = list(
     color = '#333333',
     fontFamily = "Erica One"
   )
 ),
 subtitle = list(
   style = list(
     color = '#666666',
     fontFamily = "Shadows Into Light"
   )
 ),
 legend = list(
   itemStyle = list(
     fontFamily = 'Tangerine',
     color = 'black'
   ),
   itemHoverStyle = list(
     color = 'gray'
   )   
  )
)

hc %>% hc_add_theme(thm)

# }

Run the code above in your browser using DataLab