1

次のスライドデッキでは、

---
title       : Foo
framework   : revealjs        # {io2012, html5slides, shower, dzslides, ...}
revealjs    : {theme: solarized}
highlighter : highlight.js  # {highlight.js, prettify, highlight}
hitheme     : tomorrow      # 
widgets     : []            # {mathjax, quiz, bootstrap}
mode        : selfcontained # {standalone, draft}
ext_widgets : [libraries/nvd3]
---
## NVD3 Plot Iframe
```{r nvd3plot2, results = 'asis', comment = NA, message = F, echo = F} 
require(rCharts)
n1 <- nPlot(mpg ~ wt, data = mtcars, type = 'scatterChart')
n1
```

グラフの背景色を白に設定したい。

私はそれを編んでから<style>、生成されたブロックを編集しfigure/nvd3plot2.htmlて追加すると、これを行うことができますbackground-color: white;:

<style>
.rChart {
  display: block;
  margin-left: auto; 
  margin-right: auto;
  width: 800px;
  height: 400px;
  background-color: white;
}  
</style>

.Rmd ファイルからこれを行うにはどうすればよいですか?

4

1 に答える 1

2

私のコメントに示されているように、白い背景を取得するための簡単な修正は、次の行をRmdファイルに追加することです

<style>iframe{background-color: white}</style>
于 2014-01-13T02:14:54.520 に答える