作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个具有多个页面的 Flexdashboard 文档。我希望在第一页上使用vetical_layout: fill
,但在第二页上我希望使用vertical_layout:scroll
。我的文档是这样开始的:
---
title: "DASHBOARD"
output:
flexdashboard::flex_dashboard:
orientation: columns
logo: logo.png
vertical_layout: fill
---
如何使用vertical_layout:scroll
查看第二页?
最佳答案
您可以覆盖单个 (H2) 列上的全局 vertical_layout
值。
---
title: "Changing Vertical Layout"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
library(ggplot2)
```
Page 1
================================
Column {data-width=650}
-----------------------------------------------------------------------
### Panel A
```{r}
qplot(cars$speed)
qplot(cars$dist)
```
Column {data-width=350}
-----------------------------------------------------------------------
### Panel B
```{r}
qplot(cars$speed)
```
### Panel C
```{r}
qplot(cars$dist)
```
Page 2
================================
Column { vertical_layout: scroll}
-----------------------------------------------------------------------
### Panel A
```{r}
qplot(cars$speed)
qplot(cars$dist)
```
```{r}
qplot(cars$speed)
qplot(cars$dist)
```
```{r}
qplot(cars$speed)
qplot(cars$dist)
```
这是覆盖全局值的类似示例。 (但是 in this case ,他们正在页面(H1)级别更改方向)。
关于r - 将flexdashboard与多个页面不同类型的vertical_layout结合起来,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43225165/
我是一名优秀的程序员,十分优秀!