ggplotly函数修改线条粗细和图表宽度

时间:2018-03-22 08:38:22

标签: r ggplot2 plotly ggplotly

我使用ggplotly函数(来自绘图R包)遇到了有关线条粗细和图表宽度的问题

这是我想用ggplotly

制作动态的ggplot图表

graphe_clustering <- ggplot(data=dtaLngC, aes(x=DAT_RLV, y=vol_cso_norm))+ geom_line(aes(color=contrat),lwd = 0.5)+ facet_wrap(~Cluster, scales = "free")+ theme(legend.position="none")

Obtained with ggplot2

现在,一切都很好。但是当我使用ggplotly(graphe_clustering)时,我得到的是:

enter image description here

有两个问题:

  • 线条粗细太大
  • 位于窗口中间的图表宽度大幅下降

有人对这些问题有任何建议吗?

0 个答案:

没有答案