hc_theme_tufte: Tufte theme for highcharts

Description Usage Arguments Examples

View source: R/theme-tufte.R

Description

Tufte theme for highcharts

Usage

1

Arguments

...

A named parameters to modify the theme.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
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())

highcharter documentation built on Jan. 3, 2022, 5:08 p.m.