ax_theme | R Documentation |
Theme for charts
ax_theme(ax, mode = c("light", "dark"), palette = NULL, monochrome = NULL, ...)
ax |
An |
mode |
use light or dark theme. |
palette |
Character. Available palettes: |
monochrome |
A list of parameters. |
... |
Additional parameters. |
An apexchart()
htmlwidget
object.
See https://apexcharts.com/docs/options/theme/
data("mpg", package = "ggplot2")
data("diamonds", package = "ggplot2")
# Dark mode
apex(
data = mpg,
mapping = aes(x = manufacturer)
) %>%
ax_theme(mode = "dark")
# Use predefined palette (1 to 10)
apex(
data = diamonds,
mapping = aes(x = color, fill = cut)
) %>%
ax_theme(palette = "palette2")
# monochrome palette
apex(
data = diamonds,
mapping = aes(x = color, fill = cut)
) %>%
ax_theme(monochrome = list(enabled = TRUE, color = "#0B6121"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.