Open
Description
Hi all,
I am creating an apexchart split into facets and I would like to add annotations to one specific sub-graph (facet).
However, adding a point annotation I see that it is added to all graphs.
Is there a way to add an annotation to a specific facet of the graph?
Below is a small reproducible example showing the behaviour.
Many thanks in advance
library(apexcharter)
apex(iris, aes(x = Sepal.Length, y = Sepal.Width), type = "scatter" ) %>%
ax_facet_wrap(facets = vars(Species)) %>%
ax_annotations(points = list(list(
x = 6,
y = 3,
marker = list(
size = 2,
fillColor = "red",
strokeColor = "red",
radius = 1
),
label = list(
text = "Test",
offsetY = 0,
borderColor = "#FF4560",
style = list(
color = "#fff",
background = "#FF4560"
)
)
)))
Metadata
Assignees
Labels
No labels
Activity