Multi line facet labels displaying incorrectly with ggplotly
未关闭
还没有人认领这个 Issue。
- 主要语言
- R
- 星标
- 2.7k
- 派生
- 641
- PR 合并指标
- 30 天内没有已合并 PR
描述
Multiline is successfully set in the ggplot object with labeller = ggplot2::label_wrap_gen(width = 15, multi_line = TRUE) but then displays incorrectly when passed to ggplotly

df <- dplyr::tibble(fruit = c("Apples", "Pears", "Bananas", "Apples", "Pears", "Bananas"),
metric = c("METRIC 1", "METRIC 1", "METRIC 1", "METRIC 1 - METRIC 2", "METRIC 1 - METRIC 2", "METRIC 1 - METRIC 2"),
value = c(1000, 2000, 3000, 2000, 3000, 3000))
myplot <- ggplot2::ggplot(
data = df,
ggplot2::aes(x = fruit,
y = value,
fill = metric)) +
ggplot2::geom_bar(stat = "identity") +
ggplot2::geom_abline(intercept = 0, slope = 0, lty = 2, color = "grey") +
ggplot2::facet_grid(cols = ggplot2::vars(metric),
scales = "fixed",
labeller = ggplot2::label_wrap_gen(width = 15,
multi_line = TRUE)
) +
ggplot2::coord_flip() +
ggplot2::theme(
text = ggplot2::element_text(size = 14,
color = "#0D0D0D"),
axis.title.x = ggplot2::element_blank(),
axis.title.y = ggplot2::element_blank(),
axis.text = ggplot2::element_text(color = "#0D0D0D"),
axis.ticks = ggplot2::element_blank(),
axis.title = ggplot2::element_text(face = "bold"),
panel.background = ggplot2::element_blank(),
plot.margin = ggplot2::unit(c(0, 0, 0, 0), units = "cm"),
legend.position = "none"
,
strip.text = ggplot2::element_text(lineheight = 2)
)
plotly::ggplotly(myplot)
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
首先运行提供的可复现 R 示例,并将 ggplot 对象与 plotly::ggplotly(myplot) 的结果进行比较,重点关注 label_wrap_gen 在 multi_line = TRUE 时生成的 facet_grid 标签。当多行 facet_grid 标签在转换后的交互式图中正确显示,且不会导致所示布局发生回归时,工作即完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- r
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100