hw_grid {highcharter} | R Documentation |
Lays out highchart widgets into a "grid", similar to
grid.arrange
from gridExtra
.
Description
Lays out highchart widgets into a "grid", similar to
grid.arrange
from gridExtra
.
Usage
hw_grid(
...,
ncol = NULL,
rowheight = NULL,
add_htmlgrid_css = TRUE,
browsable = TRUE
)
Arguments
... |
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 |
Examples
charts <- lapply(1:9, function(x) {
hchart(ts(cumsum(rnorm(100))))
})
if (interactive()) {
hw_grid(charts, rowheight = 300)
}
[Package highcharter version 0.9.4 Index]