ax_responsive {apexcharter} | R Documentation |
Responsive options
Description
Responsive options
Usage
ax_responsive(ax, ...)
Arguments
ax |
An |
... |
Additional parameters. |
Value
An apexchart()
htmlwidget
object.
Note
See https://apexcharts.com/docs/options/responsive/
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"
)
)
)
)
[Package apexcharter version 0.4.3 Index]