-
-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
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
String functions as arguments are supported. #199
Conversation
This is great, thank you! Can you please add yourself as contributor to the Then I'll merge |
Thank you John, I have add myself to the |
@QinJun-1998 Hi, you can make it by using this code library(echarts4r)
data.frame(
x = 1:3, y = 1:3, z = 1:3, name = c("a", "b", "c")
) %>%
e_charts(x) %>%
e_scatter_3d(y, z, name) %>%
e_labels(show = T) %>% # Optional, just for example
e_tooltip() The arrow in your sample is not the item name but the series name. |
@swsoyee Thank you very much, it does work! |
Relate Issue #105 .
A function is added to search for a string in the argument and convert it.
Test
I'm not sure if this would be good, as it affects all options of rendering.
Feel free to edit this PR.