Skip to contents

[Superseded]

asn_theme has been superseded in favor of hc_theme_asn, which follows the highcharter naming convention.

Usage

asn_theme

Format

An object of class hc_theme of length 8.

Value

Custom highcharter theme with ASN Brand Identity

Examples

library(highcharter)
highchart() |>
  hc_add_series(
    data = iris,
    type = "scatter",
    hcaes(
      x = Sepal.Length,
      y = Sepal.Width,
      group = Species
    )
  ) |>
  hc_add_theme(
    asn_theme
  )