legend.position always 'right' in ggplotly, except when legend.position = 'none'
未关闭
还没有人认领这个 Issue。
ggplotly
- 主要语言
- R
- 星标
- 2.7k
- 派生
- 641
- PR 合并指标
- 30 天内没有已合并 PR
描述
When plotting a ggplot object using ggplotly, legend.position is always 'right' even if I chose legend.position = 'top' or any of the other options. It only works as it is supposed to when I specify legend.position = 'none' that it actually disappears.
ggplot displays the legend fine.
library(tibble)
library(ggplot2)
df <- tibble(year = c(2000, 2001, 2000, 2001),
freq = c(3, 4, 2, 9),
clas = c("A", "A", "B", "B"))
ggplot(df, aes(year, freq, color = clas)) +
geom_line() +
theme(legend.position = 'top')

When I try this instead:
library(plotly)
ggplotly(
ggplot(df, aes(year, freq, color = clas)) +
geom_line() +
theme(legend.position = 'top')
)
I get the legend on the right, as I show in this shiny app.
贡献指南
从这里开始
- 先读完整个 Issue,再读项目的贡献指南。
- 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
- Fork 仓库,在一个分支上完成修改。
- 提交 Pull Request,并在描述里引用这个 Issue 编号。
调研方向
从使用 ggplotly、ggplot2、tibble 和 theme(legend.position = 'top') 的可复现 R 示例开始,然后将渲染后的图例位置与 ggplot 输出进行比较。当 ggplotly 遵循 top 和其他受支持的图例位置,同时仍对 legend.position = 'none' 隐藏图例时,即表示完成。
由索引模型根据 Issue 内容生成。
评估
- 技术栈
- r
- 领域
- data-visualization
- Issue 类型
- 缺陷
- 难度
- 3/5
- 预计耗时
- 1-2 天
- 活跃度
- 停滞
- 描述清晰度
- 基本清楚
- 新手友好度
- 35/100