VegaLite.resolve

You're seeing just the function resolve, go back to VegaLite module for more information.

Specs

resolve(t(), atom(), keyword()) :: t()

Adds a resolve entry to the specification.

Resolution defines how multi-view graphics are combined with regard to scales, axis and legend.

Example

Vl.new()
|> Vl.data_from_values(...)
|> Vl.layers([
  Vl.new()
  |> ...,
  Vl.new()
  |> ...
])
|> Vl.resolve(:scale, y: :independent)

See the docs for more details.