Vega-Lite specifications are JSON objects that describe a diverse range of interactive visualizations. Besides using a single view specification as a standalone visualization, Vega-Lite also provides operators for composing multiple view specifications into a layered or multi-view specification. These operators include layer, facet, concat, and repeat.
Attributes
- Companion
- object
- Graph
-
- Supertypes
-
trait LazyLoggingclass Objecttrait Matchableclass Any
- Known subtypes
Members list
Value members
Concrete methods
Sets the overall size of the visualization. The total size of a Vega-Lite visualization may be determined by multiple factors: specified width, height, and padding values, as well as content such as axes, legends, and titles.
Sets the overall size of the visualization. The total size of a Vega-Lite visualization may be determined by multiple factors: specified width, height, and padding values, as well as content such as axes, legends, and titles.
Value parameters
- `type`
-
The sizing format type. One of "pad", "fit", "fit-x", "fit-y", or "none". See the autosize type documentation for descriptions of each.
- contains
-
Determines how size calculation should be performed, one of "content" or "padding". The default setting ("content") interprets the width and height settings as the data rectangle (plotting) dimensions, to which padding is then added. In contrast, the "padding" setting includes the padding within the view size calculations, such that the width and height settings indicate the total intended size of the view.
- resize
-
A boolean flag indicating if autosize layout should be re-calculated on every view update.
Attributes
CSS color property to use as the background of the entire view.
CSS color property to use as the background of the entire view.
Attributes
Sets Vega-Lite configuration object that lists configuration properties of a visualization for creating a consistent theme. This property can only be defined at the top-level of a specification.
Sets Vega-Lite configuration object that lists configuration properties of a visualization for creating a consistent theme. This property can only be defined at the top-level of a specification.
Attributes
Sets a JSON array describing the data source. Set to null to ignore the parent's data source. If no data is set, it is derived from the parent.
Sets a JSON array describing the data source. Set to null to ignore the parent's data source. If no data is set, it is derived from the parent.
Attributes
Sets an array of objects describing the data source.
Sets an array of objects describing the data source.
Attributes
Sets a data frame describing the data source.
Sets a data frame describing the data source.
Attributes
Sets the url of the data source.
Sets the url of the data source.
Value parameters
- format
-
Type of input data: "json", "csv", "tsv", "dsv". Default value: The default format type is determined by the extension of the file URL. If no extension is detected, "json" will be used by default.
- url
-
A URL from which to load the data set.
Attributes
Sets the description of this mark for commenting purpose.
Sets the description of this mark for commenting purpose.
Attributes
Returns the HTML of plot specification with Vega Embed.
Returns the HTML of plot specification with Vega Embed.
Attributes
Returns the HTML wrapped in an iframe to render in notebooks.
Returns the HTML wrapped in an iframe to render in notebooks.
Value parameters
- id
-
the iframe HTML id.
Attributes
Sets the name of the visualization for later reference.
Sets the name of the visualization for later reference.
Attributes
Specifies padding for all sides. The visualization padding, in pixels, is from the edge of the visualization canvas to the data rectangle.
Specifies padding for all sides. The visualization padding, in pixels, is from the edge of the visualization canvas to the data rectangle.
Attributes
Specifies padding for each side. The visualization padding, in pixels, is from the edge of the visualization canvas to the data rectangle.
Specifies padding for each side. The visualization padding, in pixels, is from the edge of the visualization canvas to the data rectangle.
Attributes
Displays the plot with the default browser.
Displays the plot with the default browser.
Value parameters
- silent
-
If true, silently swallow any exception.
Attributes
Sets a descriptive title to a chart.
Sets a descriptive title to a chart.
Attributes
Returns a string representation of the object.
Returns a string representation of the object.
The default representation is platform dependent.
Attributes
- Returns
-
a string representation of the object.
- Definition Classes
-
Any
An array of data transformations such as filter and new field calculation. Data transformations in Vega-Lite are described via either view-level transforms (the transform property) or field transforms inside encoding (bin, timeUnit, aggregate, sort, and stack).
An array of data transformations such as filter and new field calculation. Data transformations in Vega-Lite are described via either view-level transforms (the transform property) or field transforms inside encoding (bin, timeUnit, aggregate, sort, and stack).
When both types of transforms are specified, the view-level transforms are executed first based on the order in the array. Then the inline transforms are executed in this order: bin, timeUnit, aggregate, sort, and stack.
Attributes
An array of data transformations such as filter and new field calculation. Data transformations in Vega-Lite are described via either view-level transforms (the transform property) or field transforms inside encoding (bin, timeUnit, aggregate, sort, and stack).
An array of data transformations such as filter and new field calculation. Data transformations in Vega-Lite are described via either view-level transforms (the transform property) or field transforms inside encoding (bin, timeUnit, aggregate, sort, and stack).
When both types of transforms are specified, the view-level transforms are executed first based on the order in the array. Then the inline transforms are executed in this order: bin, timeUnit, aggregate, sort, and stack.
Attributes
Optional metadata that will be passed to Vega. This object is completely ignored by Vega and Vega-Lite and can be used for custom metadata.
Optional metadata that will be passed to Vega. This object is completely ignored by Vega and Vega-Lite and can be used for custom metadata.
Attributes
Abstract fields
The specification
The specification
Attributes
Inherited fields
Attributes
- Inherited from:
- LazyLogging