在 Rshiny 值框中添加换行符或第 3 行文本?

问题描述

我正在尝试创建一个值框,但我的问题是字幕文本太长。

这是我的代码

```{r}
valueBox(12,paste('Number of Cars',':','City','is Chicago'))
```

enter image description here

但我的目标是这样的

enter image description here

我尝试使用“\n”,但没有用。

解决方法

我改用了 paste0(),我可以使用 HTML 换行代码 <br> 来做到这一点。我认为这可能取决于您使用的是 flexdashboard 还是闪亮的。但这应该会有所帮助。

---
title: "Old Faithful Eruptions"
output: flexdashboard::flex_dashboard
runtime: shiny
---

```{r}
flexdashboard::valueBox(42,paste0('Number of Cars',':','<br>','City ','is Chicago'))
```

enter image description here