Skip to content
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

Bar chart is always on the bottom layer of other charts #1733

Closed
cls3415 opened this issue Apr 2, 2020 · 1 comment
Closed

Bar chart is always on the bottom layer of other charts #1733

cls3415 opened this issue Apr 2, 2020 · 1 comment

Comments

@cls3415
Copy link

cls3415 commented Apr 2, 2020

I was trying to put a bar chart on the top layer, but it is always on the bottom layer of other charts.

library(plotly)
dat1 <- data.frame(
  date = as.Date(c("2020-03-26", "2020-03-27", "2020-03-28", "2020-03-29","2020-03-30", "2020-03-31", "2020-04-01")),
  value = c(1,3,5,7,5,3,1),
  box = c(1,2,rep(4,5))
)

dat1


fig <- plot_ly(data = dat1, x = ~ date, y = ~ box, mode = "line+markers", type='scatter', stackgroup = 'one', fillcolor='#d8f4ef' )
fig <- fig %>% add_bars(data = dat1, x= ~date, y = ~ value, inherit = F)

fig
@cpsievert
Copy link
Collaborator

This is limitation of plotly.js (currently there is no way to control the ordering of all trace combination). For progress, please follow plotly/plotly.js#3748

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants