Learn R Programming

apexcharter (version 0.3.0)

ax_colors: Colors

Description

Colors

Usage

ax_colors(ax, ...)

Arguments

ax

A apexcharts htmlwidget object.

...

Colors for the chart's series. When all colors are used, it starts from the beginning.

Value

A apexcharts htmlwidget object.

Examples

Run this code
# NOT RUN {
data("diamonds", package = "ggplot2")

# Change default color(s)
apex(
  data = diamonds,
  mapping = aes(x = cut)
) %>%
  ax_colors("#F7D358")


library(scales)
apex(
  data = diamonds,
  mapping = aes(x = cut, fill = color)
) %>%
  ax_colors(brewer_pal(palette = "Set2")(7))
# }

Run the code above in your browser using DataLab