ax_plotOptions | R Documentation |
Specific options for chart
ax_plotOptions(
ax,
bar = NULL,
heatmap = NULL,
radialBar = NULL,
pie = NULL,
bubble = NULL,
boxPlot = NULL,
...
)
ax |
An |
bar |
See |
heatmap |
See |
radialBar |
See |
pie |
See |
bubble |
See |
boxPlot |
See |
... |
Additional parameters. |
An apexchart()
htmlwidget
object.
data("diamonds", package = "ggplot2")
# Stack bar type
apex(
data = diamonds,
mapping = aes(x = cut)
) %>%
ax_plotOptions(
bar = bar_opts(endingShape = "rounded", columnWidth = "10%")
)
# Pie
apex(
data = diamonds,
mapping = aes(x = cut),
type = "pie"
) %>%
ax_plotOptions(
pie = pie_opts(customScale = 0.5)
)
# Radial
apexchart() %>%
ax_chart(type = "radialBar") %>%
ax_plotOptions(
radialBar = radialBar_opts(
hollow = list(size = "70%")
)
) %>%
ax_series(70) %>%
ax_labels("Indicator")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.