hw_grid | R Documentation |
grid.arrange
from gridExtra
.Lays out highchart widgets into a "grid", similar to
grid.arrange
from gridExtra
.
hw_grid(
...,
ncol = NULL,
rowheight = NULL,
add_htmlgrid_css = TRUE,
browsable = TRUE
)
... |
either individual |
ncol |
how many columns in the grid |
rowheight |
Height in px. |
add_htmlgrid_css |
A logical value to add or not |
browsable |
Logical value indicating if the returned object is converted
to an HTML object browsable using |
charts <- lapply(1:9, function(x) {
hchart(ts(cumsum(rnorm(100))))
})
if (interactive()) {
hw_grid(charts, rowheight = 300)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.