VegaLite.config

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

Specs

config(
  t(),
  keyword()
) :: t()

Adds view configuration to the specification.

Configuration allows for setting general properties of the visualization.

All provided options are converted to configuration properties and merged with the existing configuration in a shallow manner.

Examples

Vl.new()
|> ...
|> Vl.config(
  view: [stroke: :transparent],
  padding: 100,
  background: "#333333"
)

See the docs for more details.