ggplotly can't change axis range with dynamic ticks
Open
Nobody has claimed this yet.
- Dominant language
- R
- Stars
- 2.7k
- Forks
- 641
- PR merge metrics
- No merged PRs in 30d
Description
Hi,
I tried to make a plot with a zoom and with dynamic ticks. But after the rendering there is no zoom.
library(plotly)
df = data.frame(x=rnorm(100), y=rnorm(100))
g <- ggplot(df, aes(x=x, y=y)) + geom_point()
ggplotly(g, dynamicTicks = TRUE) %>% layout(xaxis = list(range = c(-0.5,0.5)))
Maybe this is incompatible or there is an other way to do it?
Thanks
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Reproduce the supplied R example using ggplotly(g, dynamicTicks = TRUE) followed by layout(xaxis = list(range = c(-0.5, 0.5))). Start by tracing the interaction between dynamicTicks and the xaxis range. Done means the requested zoom is preserved with dynamic ticks, or the incompatibility and supported alternative are documented.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- r
- Domain
- data-visualization
- Issue type
- Bug
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100