boxplot_opts | R Documentation |
Use these options in ax_plotOptions()
.
boxplot_opts(color.upper, color.lower, ...)
color.upper |
Color for the upper quartile (Q3 to median) of the box plot. |
color.lower |
Color for the lower quartile (median to Q1) of the box plot. |
... |
Additional parameters. |
A list
of options that can be used in ax_plotOptions()
.
See https://apexcharts.com/docs/options/plotoptions/boxplot/.
data("mpg", package = "ggplot2")
apex(mpg, aes(class, hwy), "boxplot") %>%
ax_plotOptions(
boxPlot = boxplot_opts(color.upper = "#848484", color.lower = "#848484" )
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.