| hc_theme_tufte {highcharter} | R Documentation |
Tufte theme for highcharts
hc_theme_tufte(...)
... |
A named parameters to modify the theme. |
n <- 15 dta <- data.frame( x = 1:n + rnorm(n), y = 2 * 1:n + rnorm(n) ) highchart() %>% hc_chart(type = "scatter") %>% hc_add_series(data = list_parse(dta), showInLegend = FALSE) %>% hc_add_theme(hc_theme_tufte())