We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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" ) ) )))
The text was updated successfully, but these errors were encountered:
That's currently not implemented. To achieve this, you'll have to make individual charts before regrouping them in a grid :
library(apexcharter) ax1 <- subset(iris, Species == "setosa") |> apex(aes(x = Sepal.Length, y = Sepal.Width), type = "scatter", height = "350px") ax2 <- subset(iris, Species == "versicolor") |> apex(aes(x = Sepal.Length, y = Sepal.Width), type = "scatter", height = "350px") ax3 <- subset(iris, Species == "virginica") |> apex(aes(x = Sepal.Length, y = Sepal.Width), type = "scatter", height = "350px") apex_grid( ax1, ax2 %>% 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" ) ) ))), ax3 )
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: