Responsive options
Arguments
- ax
An
apexchart()
htmlwidget
object.- ...
Additional parameters.
Value
An apexchart()
htmlwidget
object.
Examples
data("mpg", package = "ggplot2")
# Open in browser and resize window
apex(
data = mpg,
mapping = aes(x = manufacturer, fill = year),
type = "bar"
) %>%
ax_legend(position = "right") %>%
ax_responsive(
list(
breakpoint = 1000,
options = list(
plotOptions = list(
bar = list(
horizontal = FALSE
)
),
legend = list(
position = "bottom"
)
)
)
)