asn_theme has been superseded in favor of hc_theme_asn, which follows the
highcharter naming convention.
Examples
library(highcharter)
#> Highcharts (www.highcharts.com) is a Highsoft software product which is
#> not free for commercial and Governmental use
highchart() |>
hc_add_series(
data = iris,
type = "scatter",
hcaes(
x = Sepal.Length,
y = Sepal.Width,
group = Species
)
) |>
hc_add_theme(
asn_theme
)
