# vega-view **Repository Path**: mirrors_elastic/vega-view ## Basic Information - **Project Name**: vega-view - **Description**: View component for Vega visualizations. - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-08 - **Last Updated**: 2025-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # vega-view View component for Vega visualizations. A **View** instantiates an underlying dataflow graph and provides a component for rendering and interacting with a visualization. When initialized with a container DOM element, the View adds a Canvas or SVG-based visualization to a web page. Alternatively, a View can be used either client-side or server-side to export static SVG or PNG (Canvas) images. ## View API Reference * [View Construction](#view-construction) * [View Configuration](#view-configuration) * [Dataflow and Rendering](#dataflow-and-rendering) * [Signals](#signals) * [Event Handling](#event-handling) * [Image Export](#image-export) * [Data](#data) ### View Construction Methods for constructing and deconstructing views. In addition to the methods described below, View instances also inherit all (non-overidden) methods of the [vega-dataflow](https://github.com/vega/vega-dataflow) [Dataflow](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/Dataflow.js) parent class. # vega.View(runtime[, options]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Constructor that creates a new View instance for the provided [Vega dataflow *runtime* specification](https://github.com/vega/vega-runtime). If provided, the *options* argument should be an object with one or more of the following properties: - *loader*: Default [loader](https://github.com/vega/vega-loader#loader) instance to use for data files and images. - *logLevel*: Initial log level to use. See the [logLevel](#view_logLevel) method. - *renderer*: The type of renderer to use (`'canvas'` or `'svg'`). See the [renderer](#view_renderer) method. - *tooltip*: Handler function invoked to support tooltip display. See the [tooltip](#view_tooltip) method. The View constructor call is typically followed by a chain of method calls to setup the desired view configuration. At the end of this chain, the [run](#view_run) method evaluates the underlying dataflow graph to update and render the visualization. ```js var view = new vega.View(runtime) .logLevel(vega.Warn) // set view logging level .initialize(document.querySelector('#view')) // set parent DOM element .renderer('svg') // set render type (defaults to 'canvas') .hover() // enable hover event processing .run(); // update and render the view ``` # view.finalize() [<>](https://github.com/vega/vega-view/blob/master/src/finalize.js "Source") Prepares the view to be removed from a web page. To prevent unwanted behaviors and memory leaks, this method removes any event listeners the visualization has registered on external DOM elements. ### View Configuration Methods for configuring the view state. These methods are often (but not always) invoked immediately after the View constructor, prior to the first invocation of the [run](#view_run) method. # view.initialize([container, bindContainer]) [<>](https://github.com/vega/vega-view/blob/master/src/initialize.js "Source") Initializes internal rendering and event handling, then returns this view instance. If the DOM element *container* is provided, visualization elements (such as Canvas or SVG HTML elements) will be added to the web page under this containing element. If *container* is not provided, the view will operate in *headless* mode, and can still generate static visualization images using the [image export](#image-export) methods. The optional DOM element (or unique CSS selector) *bindContainer* indicates the element that should contain any input elements bound to signals; if not specified the same container element as the visualization will be used. # view.loader([loader]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Get or set the [loader](https://github.com/vega/vega-loader#loader) instance to use for data files and images. If the loader is updated _after_ [initialize](#view_initialize) has been invoked, the visualization will be reinitialized. If a Vega View loads data from an external URL, the load request is made _immediately_ upon view construction. To ensure a custom loader is used, _provide the loader as a constructor option!_ Invoking this method will update the loader only _after_ initial data requests have been made. # view.logLevel(level) [<>](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/Dataflow.js "Source") Sets the current log level and returns this view instance. This method controls which types of log messages are printed to the JavaScript console, and is inherited from the [Dataflow](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/Dataflow.js) parent class. The valid *level* values are `vega.None` (the default), `vega.Warn`, `vega.Info`, `vega.Debug`. See the [logger](https://github.com/vega/vega-util/#logger) method in [vega-util](https://github.com/vega/vega-util) for more. # view.renderer(type) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Sets the renderer *type* (e.g., `'canvas'` (the default) or `'svg'`) and returns this view instance. While typically invoked immediately upon view creation, this method can be called at any time to change the renderer. Additional renderer types may be used if registered via the [renderModule](https://github.com/vega/vega-scenegraph/blob/master/src/modules.js) method exported by [vega-scenegraph](https://github.com/vega/vega-scenegraph); for an example see the [vega-webgl-renderer](https://github.com/vega/vega-webgl-renderer). # view.tooltip(tooltipHandler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Get or set the tooltip handler function, which is invoked to handle display of tooltips (for example, when users hover the mouse cursor over an item). The *tooltipHandler* argument should be a function that respects the following method signature: ```js function(handler, event, item, value) { // perform custom tooltip presentation } ``` The *tooltipHandler* function arguments are: - *handler* - The scenegraph input [Handler](https://github.com/vega/vega-scenegraph/blob/master/src/Handler.js) instance that invoked the *tooltipHandler* function. - *event* - The [event](https://developer.mozilla.org/en-US/docs/Web/Events) that caused an update to the tooltip display. - *item* - The scenegraph item corresponding to the tooltip. - *value* - The tooltip value to display. If `null` or `undefined`, indicates that no tooltip should be shown. The tooltip *value* may have an arbitrary type, including Object and Array values. It is up the *tooltipHandler* to appropriately interpret and display this value. - In addition, Vega invokes the *tooltipHander* using the current View as the *this* context for the function. The default handler uses built-in browser support to show tooltips. It takes a value to show in a tooltip, transforms it to a string value, and sets the HTML `"title"` attribute on the element containing the View. The default handler will coerce literal values to strings, and will show the contents of Object or Array values (up to one level of depth). For Object values, each key-value pair is displayed on its own line of text (`"key1: value\nkey2: value2"`). # view.hover([hoverSet, updateSet]) [<>](https://github.com/vega/vega-view/blob/master/src/hover.js "Source") Enables hover event processing and returns this view instance. The optional arguments specify which named encoding sets to invoke upon mouseover and mouseout. The *hoverSet* defaults to `'hover'`, corresponding to the `"hover"` set within a Vega mark specification `"encode"` block. The *updateSet* defaults to `'update'`, corresponding to the `"update"` set within a Vega mark specification `"encode"` block. If this method is never invoked, the view will not automatically handle hover events. Instead, the underlying dataflow definition will have to explicitly set up event streams for handling mouseover and mouseout events. # view.background([color]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets the view background color. If no arguments are provided, returns the current background color. If *color* is specified, this method sets the background color and returns this view instance. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. # view.width([width]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets the view width, in pixels. If no arguments are provided, returns the current width value. If *width* is specified, this method sets the width and returns this view instance. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. This method is equivalent to `view.signal('width'[, width])`. # view.height([height]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets the view height, in pixels. If no arguments are provided, returns the current height value. If *height* is specified, this method sets the height and returns this view instance. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. This method is equivalent to `view.signal('height'[, height])`. # view.padding([padding]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets the view padding, in pixels. Padding objects take the form `{left: 5, top: 5, right: 5, bottom: 5}`. If no arguments are provided, returns the current padding value. If *padding* is specified, this method sets the padding and returns this view instance. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. This method is equivalent to `view.signal('padding'[, padding])`. # view.resize() [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Sets a flag indicating that layout autosize calculations should be re-run on the next pulse propagation cycle. If an autosize method of `"pad"` or `"fit"` is being used, calling this method will cause the chart bounds layout to be recomputed the next time the [run](#view_run) method is invoked. ### Dataflow and Rendering Methods for invoking dataflow evaluation and view rendering. # view.run([encode]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Evaluates the underlying dataflow graph and returns this view instance. The optional *encode* argument is a String value indicating the name of a custom `"encode"` set to run in addition to the standard `"update"` encoder. If one or more data sets have been queued to be loaded from external files, this method will function asynchronously: the method will initiate file loading and return immediately, and the dataflow graph will be evaluated when file loading completes. Any scenegraph elements modified during dataflow evaluation will automatically be re-rendered in the view. Internally, this method invokes the `run` method of the [Dataflow](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/Dataflow.js) parent class, and then additionally performs rendering. # view.runAfter(callback) [<>](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/run.js "Source") Schedules a *callback* function to be invoked after the current dataflow evaluation completes. The callback function will be invoked with this view instance provided as the sole parameter. If dataflow evaluation is not currently occurring, the callback function is invoked immediately. # view.render([update]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Renders the scenegraph and returns this view instance. If no arguments are provided, the entire scenegraph is redrawn. If provided, the *update* argument should be an array of "dirty" scenegraph items to redraw. Incremental rendering will be performed to redraw only damaged regions of the scenegraph. During normal execution, this method is automatically invoked by the [run](#view_run) method. However, clients may explicitly call this method to (re-)render the scene on demand (for example, to aid debugging). # view.dirty(item) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Reports a "dirty" scenegraph item to be re-drawn the next time dataflow evaluation completes. This method is typically invoked by dataflow operators directly to populate a dirty list for incremental rendering. # view.container() [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Returns the DOM container element for this view, if it exists. # view.scenegraph() [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Returns the [Vega scenegraph](https://github.com/vega/vega-scenegraph) instance for this view. # view.origin() [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Returns the [x, y] origin coordinates for the current view. The origin coordinates indicate the translation of the view's primary coordinate system, encompassing the left and top padding values as well as any additional padding due to autosize calculations. ### Signals Methods for accessing and updating dataflow *signal* values. # view.signal(name[, value]) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets a dataflow *signal*. If only the *name* argument is provided, returns the requested signal value. If *value* is also specified, updates the signal and returns this view instance. If the signal does not exist, an error will be raised. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. # view.getState([options]) [<>](https://github.com/vega/vega-view/blob/master/src/state.js "Source") Gets the state of signals and data sets in this view's backing dataflow graph. If no arguments are specified, returns an object containing both signal values and any modified data sets for this view. By default, the exported state includes all signal values (across all mark contexts) except for those bound to data pipeline transforms, and any data sets that were explicitly modified via triggers or the View API. An *options* argument can be provided to control what internal state is collected. However, the options involve interacting with internal details of a Vega runtime dataflow and is intended for expert use only. The default options should suffice for state capture in most instances. The *options* object supports the following properties: - *signals*: A predicate function that accepts a signal *name* and *operator* and returns true to export the operator state. - *data*: A predicate function that accepts a dataset *name* and *dataset* object and returns true to export the data. - *recurse*: A boolean flag indicating if the state export process should recurse into mark sub-contexts. # view.setState(state) [<>](https://github.com/vega/vega-view/blob/master/src/state.js "Source") Sets the *state* of signals and/or datasets in this view's backing dataflow graph. The *state* argument should be an object generated by the [getState](#view_getState) method. This method updates all implicated signals and data sets, invokes the [run](#view_run) method, and returns this view instance. # view.addSignalListener(name, handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Registers a listener for changes to the signal with the given *name* and returns this view instance. If the signal does not exist, an error will be raised. This method is idempotent: adding the same handler for the same signal multiple times has no effect beyond the first call. When the signal value changes, the *handler* function is invoked with two arguments: the *name* of the signal and the new signal *value*. Listeners will be invoked when the signal value *changes* during pulse propagation (e.g., after [view.run()](#view_run) is called). Signal listeners are invoked immediately upon signal update, in the midst of dataflow evaluation. As a result, other signal updates and data transforms may have yet to update. If you wish to access the values of other signals, or update signal values and re-run the dataflow, use the [runAfter](#view_runAfter) method to schedule a callback that performs the desired actions _after_ dataflow evaluation completes. Attempting to call the [run](#view_run) method from within a signal listener will result in an error, as recursive invocation is not allowed. To remove a listener, use the [removeSignalListener](#view_removeSignalListener) method. ```js view.addSignalListener('width', function(name, value) { console.log('WIDTH: ' + value); }); view.width(500).run(); // listener logs 'WIDTH: 500' ``` # view.removeSignalListener(name, handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Removes a signal listener registered with the [addSignalListener](#view_addSignalListener) method and returns this view instance. If the signal does not exist, an error will be raised. If the signal exists but the provided *handler* is not registered, this method has no effect. ### Event Handling Methods for generating new event streams, registering event listeners, and handling tooltips. See also the [hover](#view_hover) method. # view.events(source, type[, filter]) [<>](https://github.com/vega/vega-view/blob/master/src/events.js "Source") Returns a new [EventStream](https://github.com/vega/vega-dataflow/blob/master/src/EventStream.js) for a specified *source*, event *type*, and optional *filter* function. The *source* should be one of `"view"` (to specify the current view), `"window"` (to specify the browser window object), or a valid CSS selector string (that will be passed to `document.querySelectorAll`). The event *type* should be a legal DOM event type. If provided, the optional *filter* argument should be a function that takes an event object as input and returns true if it should be included in the produced event stream. Typically this method is invoked internally to create event streams referenced within Vega signal definitions. However, callers can use this method to create custom event streams if desired. This method assumes that the view is running in a browser environment, otherwise invoking this method may have no effect. # view.addEventListener(type, handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Registers an event listener for input events and returns this view instance. The event *type* should be a string indicating a legal DOM event type supported by [vega-scenegraph](https://github.com/vega/vega-scenegraph) event handlers. Examples include `"mouseover"`, `"click"`, `"keydown"` and `"touchstart"`. This method is idempotent: adding the same handler for the same event type multiple times has no effect beyond the first call. When events occur, the *handler* function is invoked with two arguments: the *event* instance and the currently active scenegraph *item* (which is `null` if the event target is the view component itself). All registered event handlers are preserved upon changes of renderer. For example, if the View [renderer](#view_renderer) type is changed from `"canvas"` to `"svg"`, all listeners will remain active. To remove a listener, use the [removeEventListener](#view_removeEventListener) method. ```js view.addEventListener('click', function(event, item) { console.log('CLICK', event, item); }); ``` # view.removeEventListener(type, handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Removes an event listener registered with the [addEventListener](#view_addEventListener) method and returns this view instance. # view.addResizeListener(handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Registers a listener for changes to the view size and returns this view instance. This method is idempotent: adding the same handler multiple times has no effect beyond the first call. When the view size changes, the *handler* function is invoked with two arguments: the *width* and *height* of the view. ```js view.addResizeListener(function(width, height) { console.log('RESIZE', width, height); }); ``` # view.removeResizeListener(type, handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Removes a listener registered with the [addResizeListener](#view_addResizeListener) method and returns this view instance. # view.tooltipHandler(handler) [<>](https://github.com/vega/vega-view/blob/master/src/View.js "Source") Gets or sets the *handler* function used to display tooltips, as defined via the `tooltip` property of a mark. The default handler uses built-in browser mechanisms by setting the `"title"` attribute of the Canvas or SVG element containing the visualization. To use custom tooltips, a new handler function can be provided to process tooltip events. If *handler* is `null`, the tooltip handler will reset to the default. The tooltip handler has the method signature `handler(event, item, text)`, where *event* is the triggering DOM mouseover or mouseout event, *item* is the corresponding scenegraph item, and *text* is the tooltip text to display (or `null` to hide tooltips). ```js // suppress tooltips over the visualization, print to console instead view.tooltipHandler(function(event, item, text) { console.log('TOOLTIP TEXT', text); }); // restore the default tooltip handler view.tooltipHandler(null); ``` ### Image Export Methods for exporting static visualization images. These methods can be invoked either client-side or server-side. # view.toCanvas([scaleFactor]) [<>](https://github.com/vega/vega-view/blob/master/src/render-to-canvas.js "Source") Returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) that resolves to a canvas instance containing a rendered bitmap image of the view. The optional *scaleFactor* argument (default 1) is a number by which to multiply the view width and height when determining the output image size. If invoked in a browser, the returned Promise resolves to an [HTML5 canvas](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/canvas) element. If invoked server-side in node.js, the Promise resolves to a [node-canvas Canvas](https://github.com/Automattic/node-canvas) instance. # view.toSVG([scaleFactor]) [<>](https://github.com/vega/vega-view/blob/master/src/render-to-svg.js "Source") Returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) that resolves to an SVG string, providing a vector graphics image of the view. The optional *scaleFactor* argument (default 1) is a number by which to multiply the view width and height when determining the output image size. # view.toImageURL(type[, scaleFactor]) [<>](https://github.com/vega/vega-view/blob/master/src/render-to-image-url.js "Source") Returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) that resolves to an image URL for a snapshot of the current view. The *type* argument must be one of `'svg'`, `'png'` or `'canvas'`. Both the png and canvas types result in a PNG image. The generated URL can be used to create downloadable visualization images. The optional *scaleFactor* argument (default 1) is a number by which to multiply the view width and height when determining the output image size. ```js // generate a PNG snapshot and then download the image view.toImageURL('png').then(function(url) { var link = document.createElement('a'); link.setAttribute('href', url); link.setAttribute('target', '_blank'); link.setAttribute('download', 'vega-export.png'); link.dispatchEvent(new MouseEvent('click')); }).catch(function(error) { /* error handling */ }); ``` ### Data Methods for accessing *data* sets and performing streaming updates. # view.data(name) [<>](https://github.com/vega/vega-view/blob/master/src/data.js "Source") Returns the data set with the given *name*. The returned array of data objects is a *live* array used by the underlying dataflow. Callers that wish to modify the returned array should first make a defensive copy, for example using `view.data('name').slice()`. # view.change(name, changeset) [<>](https://github.com/vega/vega-view/blob/master/src/data.js "Source") Updates the data set with the given *name* with the changes specified by the provided *changeset* instance. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. ```js view.change('data', vega.changeset().insert([...]).remove([...])) .run() ``` Internally, this method takes the provided [ChangeSet](https://github.com/vega/vega-dataflow/blob/master/src/ChangeSet.js) and invokes [Dataflow.pulse](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/update.js). See [vega-dataflow](https://github.com/vega/vega-dataflow) for more. # view.insert(name, tuples) [<>](https://github.com/vega/vega-view/blob/master/src/data.js "Source") Inserts an array of new data *tuples* into the data set with the given *name*, then returns this view instance. The input *tuples* array should contain one or more data objects that are not already included in the data set. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. Insert can not be used in combination with the [remove](#view_remove) method on the same pulse; to simultaneously add and remove data use the [change](#view_change) method. Internally, this method creates a [ChangeSet](https://github.com/vega/vega-dataflow/blob/master/src/ChangeSet.js) and invokes [Dataflow.pulse](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/update.js). See [vega-dataflow](https://github.com/vega/vega-dataflow) for more. # view.remove(name, tuples) [<>](https://github.com/vega/vega-view/blob/master/src/data.js "Source") Removes data *tuples* from the data set with the given *name*, then returns this view instance. The *tuples* argument can either be an array of tuples already included in the data set, or a predicate function indicating which tuples should be removed. This method does not force an immediate update to the view: invoke the [run](#view_run) method when ready. Remove can not be used in combination with the [insert](#view_insert) method on the same pulse; to simultaneously add and remove data use the [change](#view_change) method. For example, to remove all tuples in the `'table'` data set with a `count` property less than five: ```js view.remove('table', function(d) { return d.count < 5; }).run(); ``` Internally, this method creates a [ChangeSet](https://github.com/vega/vega-dataflow/blob/master/src/ChangeSet.js) and invokes [Dataflow.pulse](https://github.com/vega/vega-dataflow/blob/master/src/dataflow/update.js). See [vega-dataflow](https://github.com/vega/vega-dataflow) for more.