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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Try the following:
library(echarts4r); library(tidyverse) mtcars %>% mutate( model = row.names(.), total = mpg + qsec ) %>% arrange(desc(total)) %>% group_by(cyl) %>% e_charts(model, timeline = TRUE) %>% e_bar_("mpg", stack = "grp") %>% e_bar(qsec, stack = "grp") %>% e_flip_coords()
If we set timelime = FALSE it works:
mtcars %>% mutate( model = row.names(.), total = mpg + qsec ) %>% arrange(desc(total)) %>% group_by(cyl) %>% e_charts(model, timeline = FALSE) %>% e_bar_("mpg", stack = "grp") %>% e_bar(qsec, stack = "grp") %>% e_flip_coords()
Any workaround?
The text was updated successfully, but these errors were encountered:
e_flip_coords understands timeline #166
bfa968d
Thanks for flagging this @vituri, I've just pushed a fix, would you mind reinstalling from Github and trying again? thank you for your patience.
Sorry, something went wrong.
Works like a charm :)
Many thanks, John!
No branches or pull requests
Try the following:
If we set timelime = FALSE it works:
Any workaround?
The text was updated successfully, but these errors were encountered: