ggplotly + subplot(shareX=TRUE) causes date axis tick labels to disappear after zoom/pan
未关闭
还没有人认领这个 Issue。
- 主要语言
- R
- 星标
- 2.7k
- 派生
- 641
- PR 合并指标
- 30 天内没有已合并 PR
描述
Description
When combining two ggplotly() objects using subplot(..., shareX = TRUE), x-axis tick labels disappear after zooming/panning.
This happens specifically with date-time x axes.
The hover labels still show correct datetime values, but axis ticks disappear.
Reproducible example
library(tidyverse)
library(lubridate)
library(plotly)
library(viridisLite)
d = tibble(
time = seq(
ymd_hms("2019-01-01 00:00:00"),
by = "10 sec",
length = 1e5
),
y = cumsum(rnorm(1e5))
)
d2 = expand.grid(
date = unique(date(d$time)),
y = 48 / 2^8 * 2^(seq(
0,
log2(48 / (48 / 2^8)),
by = 1/20
))
) %>%
as_tibble() %>%
mutate(z = rnorm(n()))
g1 = ggplot(d, aes(time, y)) +
geom_line(linewidth = 0.3) +
theme_bw()
g2 = ggplot(
d2 %>%
mutate(date = as.POSIXct(date) + 12*3600),
aes(date, log2(y), fill = z)
) +
geom_raster() +
scale_fill_gradientn(colours = turbo(100)) +
theme_bw()
p1 = ggplotly(g1)
p2 = ggplotly(g2)
subplot(
p1,
p2,
nrows = 2,
shareX = TRUE
) %>%
layout(
dragmode = "pan"
)
Expected behavior
x-axis tick labels should remain visible and automatically update during zoom/pan.
Actual behavior
x-axis tick labels disappear after zooming/panning.
Session info
sessionInfo()
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从使用 ggplotly()、subplot()、shareX = TRUE 和平移/缩放交互的可复现 R 示例开始。比较缩放或平移前后的日期时间轴行为;当 x 轴刻度标签保持可见并自动更新时,即视为完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- r
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 4/5
- 预计耗时
- 3-5 天
- 活跃度
- 冷清
- 描述清晰度
- 基本清楚
- 新手友好度
- 50/100