Markers properties
ax_markers(
ax,
size = NULL,
colors = NULL,
strokeColor = NULL,
strokeWidth = NULL,
strokeOpacity = NULL,
fillOpacity = NULL,
shape = NULL,
radius = NULL,
offsetX = NULL,
offsetY = NULL,
hover = NULL,
...
)
An apexchart()
htmlwidget
object.
An apexchart()
htmlwidget
object.
Numeric. Size of the marker point.
Sets the fill color(s) of the marker point.
Stroke Color of the marker.
Stroke Size of the marker.
Opacity of the border around marker.
Opacity of the marker fill color.
Shape of the marker. Available Options for shape: "square"
or "circle"
.
Numeric. Radius of the marker (applies to square shape)
Numeric. Sets the left offset of the marker.
Numeric. Sets the top offset of the marker.
List with item size
(Size of the marker when it is active).
Additional parameters.
data("economics", package = "ggplot2")
# show points
apex(
data = tail(economics, 20),
type = "line",
mapping = aes(x = date, y = uempmed)
) %>%
ax_markers(size = 6)
Run the code above in your browser using DataLab