VegaLite.concat
You're seeing just the function
concat
, go back to VegaLite module for more information.
Specs
Builds a concatenated multi-view specification from the given list of single view specifications.
The concat type must be either :wrappable
(default), :horizontal
or :vertical
.
Examples
Vl.new()
|> Vl.data_from_values(...)
|> Vl.concat([
Vl.new()
|> ...,
Vl.new()
|> ...,
Vl.new()
|> ...
])
Vl.new()
|> Vl.data_from_values(...)
|> Vl.concat(
[
Vl.new()
|> ...,
Vl.new()
|> ...
],
:horizontal
)
See the docs for more details.