【发布时间】:2017-01-17 00:07:09
【问题描述】:
【问题讨论】:
【问题讨论】:
因为我没有你的代码,你可以试试这样的:
Column {.tabset}
-----------------------------------------------------------------------
### chart 3
它可能会起作用。您可以在flexdashboard 网页(与打印屏幕上的相同)中找到有关此的更多规范。
【讨论】:
我正在运行 1.0.143 版的 R-Studio、1.8 版的 rmarkdown 和 0.5.1 版的 flexdashboard。选项卡与 flexdashboard 配合得很好。文档还说你可以这样做。
---
title: "Focal Chart (Top)"
output:
flexdashboard::flex_dashboard:
orientation: rows
---
# Page Title
## Row {data-height=650}
### Chart One
```{r}
```
## Row {data-height=350}
### Chart 2
```{r}
```
### Chart 3 {.tabset }
#### Chart 3 Tab 1
```{r}
```
#### Chart 3 Tab 2
```{r}
```
【讨论】:
你可以试试
# Your tabset title
================================
(tabset content)
【讨论】:
为了提供一个答案(一个不满意的,艰难的),特此指出这是一个已知问题,目前在flexdashboard没有解决方案。
Github 来源:https://github.com/rstudio/flexdashboard/issues/37
【讨论】: