我试图用酒窝图创建flexdashboard,但是在第二页中,图例和x和y标签弄乱了,彼此混合在一起,这看起来很丑陋。我无法解决此问题。有人有主意吗?请帮忙。
否:如果我修复了第二页,则在第一页中也会出现相同的问题。 代码是:
---
title: "Dimple Example"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
---
```{r setup, include=FALSE}
library(dimple)
```
Page 1 {data-orientation=rows}
=====================================
Row {data-height=1200}
-------------------------------------
### Chart A
```{r}
dimple(sales,
xCategory="Month",
xOrderRule="Date",
yPct="Unit.Sales",
series="Channel",legend=TRUE)
```
### Chart B
```{r}
dimple(sales,
xCategory="Month",
xOrderRule="Date",
yPct="Unit.Sales",
series="Channel",legend=TRUE)
```
Page 2 {data-orientation=rows}
=====================================
Row {data-height=1200}
-------------------------------------
### Chart B
```{r}
dimple(sales,
xCategory="Month",
xOrderRule="Date",
yPct="Unit.Sales",
series="Channel",legend=TRUE)
```
### Chart C
```{r}
dimple(sales,
xCategory="Month",
xOrderRule="Date",
yPct="Unit.Sales",
series="Channel",legend=TRUE)
```