答案 0 :(得分:2)
你可以试试
首先将此css(作为dygraph.css)文件保存在工作目录中。您可以使用css文件,但是您必须以某种方式调整绘图大小,因为我们几乎看不到x轴标签。您可以增加字体大小,但标签的一半会被切断。
.dygraph-title {
color: navy;
font-weight: bold;
}
.dygraph-axis-label-x {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
float: right;
margin: 0 0 10px 10px;
font-size: 5px;
}
img.resize{
width:540px; /* you can use % */
height: 250;
}
graph_div {
position: absolute;
left: 20px;
right: 20px;
top: 140px;
bottom: 300px;
}
然后使用你的例子
lungDeaths <- cbind(ldeaths, mdeaths, fdeaths)
dygraph(lungDeaths, main = "Deaths from Lung Disease (UK)") %>%
dyOptions(colors = RColorBrewer::brewer.pal(3, "Set2")) %>% dyCSS("dygraph.css")