hc_theme_tufte {highcharter} | R Documentation |
Desing inspired by Edward Tufte style.
hc_theme_tufte(...) hc_theme_tufte2(...)
... |
Named argument to modify the theme |
n <- 15 dta <- dplyr::data_frame( x = rnorm(n), y = 1.5 * x + rnorm(n)) highchart() %>% hc_chart(type = "scatter") %>% hc_add_series(data = list_parse(dta)) %>% hc_add_theme(hc_theme_tufte()) values <- 1 + abs(rnorm(12)) highchart() %>% hc_chart(type = "column") %>% hc_add_series(data = values) %>% hc_xAxis(categories = month.abb) %>% hc_add_theme(hc_theme_tufte2())