我正在使用plotly 4.5.2
。
通过在titlefont=list(size=30)
中使用layout()
来改变图表标题的大小,如下所示:
library(plotly)
x <- 0:10
y <- 0:10
dd <- transform(expand.grid(x=x, y=y), z=x+y)
dd1 <- data.frame(x=x, y=y)
pp <- plot_ly() %>%
layout(title="Hello", titlefont=list(size=30)) %>%
add_trace(data=dd, x=~x, y=~y, z=~z, type="heatmap") %>%
add_trace(data=dd1, x=~x, y=~y, type="scatter", mode="lines", showlegend=FALSE)
但是当标题太大时标题没有正确呈现:
这是一个错误,还是我在做坏事?
答案 0 :(得分:3)
您可以手动设置图表大小。请尝试以下方法:
pp %>% layout(autosize = F, height = 500, margin = list(l=50, r=50, b=100, t=100, pad=4))