UNPKG

16.9 kBMarkdownView Raw
1# Vega-Embed
2
3[![npm version](https://img.shields.io/npm/v/vega-embed.svg)](https://www.npmjs.com/package/vega-embed)
4[![](https://data.jsdelivr.com/v1/package/npm/vega-embed/badge?style=rounded)](https://www.jsdelivr.com/package/npm/vega-embed)
5[![Build Status](https://github.com/vega/vega-embed/workflows/Test/badge.svg)](https://github.com/vega/vega-embed/actions)
6[![codecov](https://codecov.io/gh/vega/vega-embed/branch/master/graph/badge.svg)](https://codecov.io/gh/vega/vega-embed)
7[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=rounded)](https://github.com/prettier/prettier)
8
9[Vega-Embed](http://github.com/vega/vega-embed) makes it easy to embed interactive [Vega](https://vega.github.io/vega) and [Vega-Lite](https://vega.github.io/vega-lite) views into web pages. With Vega Embed, you can:
10
11- Load Vega/Vega-Lite specs from source text, parsed JSON, or URLs.
12- Patch Vega specs (even ones generated from Vega-Lite) to add additional functionality; for example, see [Rotating Earth](https://observablehq.com/@domoritz/rotating-earth).
13- Add action links such as "View Source" and "Open in Vega Editor".
14- Includes [Vega Tooltip](https://github.com/vega/vega-tooltip).
15- Includes [Vega Themes](https://github.com/vega/vega-themes). **Experimental: themes are not stable yet**
16
17**Vega-Lite works well with [Observable](https://beta.observablehq.com/). Learn how to use it in [our example notebook](https://beta.observablehq.com/@domoritz/hello-vega-embed).**
18
19<img src="embed.gif" width="500">
20
21## Basic Examples
22
23### Directly in the Browser
24
25You can import Vega-Embed from a local copy or (as shown below) [from jsDelivr](https://www.jsdelivr.com/package/npm/vega-embed). Please replace `[VERSION]` with the correct [Vega](https://www.jsdelivr.com/package/npm/vega), [Vega-Lite](https://www.jsdelivr.com/package/npm/vega-lite), and [Vega-Embed](https://www.jsdelivr.com/package/npm/vega-embed) versions. We recommend that you specify the major versions (`vega@5`, `vega-lite@4`, `vega-embed@6`).
26
27```html
28<!DOCTYPE html>
29<html>
30<head>
31 <!-- Import Vega & Vega-Lite (does not have to be from CDN) -->
32 <script src="https://cdn.jsdelivr.net/npm/vega@[VERSION]"></script>
33 <script src="https://cdn.jsdelivr.net/npm/vega-lite@[VERSION]"></script>
34 <!-- Import vega-embed -->
35 <script src="https://cdn.jsdelivr.net/npm/vega-embed@[VERSION]"></script>
36</head>
37<body>
38
39<div id="vis"></div>
40
41<script type="text/javascript">
42 var spec = "https://raw.githubusercontent.com/vega/vega/master/docs/examples/bar-chart.vg.json";
43 vegaEmbed('#vis', spec).then(function(result) {
44 // Access the Vega view instance (https://vega.github.io/vega/docs/api/view/) as result.view
45 }).catch(console.error);
46</script>
47</body>
48</html>
49```
50
51Look at the example online in the [Vega-Embed Block](https://bl.ocks.org/domoritz/455e1c7872c4b38a58b90df0c3d7b1b9).
52
53### JavaScript or TypeScript
54
55The basic example below needs to be transpiled and bundled (using rollup, webpack, etc..) before it can be loaded in a browser.
56
57```ts
58import embed from 'vega-embed';
59
60const spec = {
61 ...
62}
63
64const result = await embed('#vis', spec);
65
66console.log(result.view);
67```
68
69### In Observable
70
71You can require embed with `embed = require('vega-embed@6')` and then embed a chart with `viewof view = embed(...)`. Check the [our example notebook](https://beta.observablehq.com/@domoritz/hello-vega-embed) for more details.
72
73## API Reference
74
75When using a `script` tag, the default export of Vega-Embed is a wrapper function that automatically chooses between [`embed`](#embed) and [`container`](#container) based on the provided arguments. Vega-Embed provides this convenience for imports in interactive environments like [Observable](https://www.observablehq.com/). When using the Vega-Embed npm package, the default export is the [`embed`](#embed) function.
76
77<a href="#embed" name="embed">#</a>
78<b>embed</b>(<i>el</i>, <i>spec</i>[, <i>opt</i>])
79[<>](https://github.com/vega/vega-embed/blob/master/src/embed.ts "Source")
80
81Returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) that resolves to a result object. The result object contains:
82
83| Property| Type | Description |
84| :------ | :---------- | :------------- |
85| `view` | String | The instantiated [Vega `View` instance](https://github.com/vega/vega-view#vega-view). |
86| `spec` | Object | A copy of the parsed JSON Vega or Vega-Lite spec. |
87| `vgSpec` | Object | The compiled Vega spec. |
88| `finalize` | Function | A method to prepare embed to be removed. To prevent unwanted behaviors and memory leaks, this method unregisters any timers and removes any event listeners the visualization has registered on external DOM elements. Applications should invoke this method when a Embed or the View instance is no longer needed. This method calls [`view.finalize`](https://vega.github.io/vega/docs/api/view/#view_finalize). |
89
90The `embed` function accepts the following arguments:
91
92| Property| Type | Description |
93| :------ | :--------- | :------------- |
94| `el` | String | A DOM element or CSS selector indicating the element on the page in which to add the embedded view. |
95| `spec` | String / Object | _String_ : A URL string from which to load the Vega specification. This URL will be subject to standard browser security restrictions. Typically this URL will point to a file on the same host and port number as the web page itself. <br> _Object_ : The Vega/Vega-Lite specification as a parsed JSON object. |
96| `opt` | Object | _(Optional)_ A JavaScript object containing options for embedding. |
97
98_Note: Internet Explorer does not support [the ES6 Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) feature. To make it work correctly, please follow [the instructions on the Vega website](https://vega.github.io/vega/usage/#ie)._
99
100<a href="#container" name="container">#</a>
101<b>container</b>(<i>spec</i>[, <i>opt</i>])
102[<>](https://github.com/vega/vega-embed/blob/master/src/container.ts "Source")
103
104Returns a [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)* that resolves to an HTML element with the [Vega `View` instance](https://github.com/vega/vega-view#vega-view) as the `value` property. The function is designed to work with [Observable](https://observablehq.com/). The `container` function accepts the following arguments:
105
106| Property| Type | Description |
107| :------ | :--------- | :------------- |
108| `spec` | String / Object | _String_ : A URL string from which to load the Vega specification. This URL will be subject to standard browser security restrictions. Typically this URL will point to a file on the same host and port number as the web page itself. <br> _Object_ : The Vega/Vega-Lite specification as a parsed JSON object. |
109| `opt` | Object | _(Optional)_ A JavaScript object containing options for embedding. |
110
111### Options
112
113You can configure Vega Embed with an options object. You can pass options as an argument to the [embed function](#api-reference) or as `usermeta.embedOptions` as part of the Vega or Vega-Lite specification.
114
115```js
116var opt = {
117 mode: ...,
118
119 config: ...,
120 theme: ...,
121
122 defaultStyle: ...,
123
124 bind: ...,
125
126 // view config options
127 renderer: ...,
128 loader: ...,
129 logLevel: ...,
130
131 tooltip: ...,
132
133 patch: ...,
134
135 width: ...,
136 height: ...,
137 padding: ...,
138
139 actions: {
140 export: ...,
141 source: ...,
142 compiled: ...,
143 editor: ...
144 },
145
146 scaleFactor: ...,
147
148 editorUrl: ...,
149
150 sourceHeader: ...,
151 sourceFooter: ...,
152
153 hover: {
154 hoverSet: ...,
155 updateSet: ...,
156 },
157
158 downloadFileName: ...,
159
160 formatLocale: ...,
161 timeFormatLocale: ...,
162
163 ast: ...,
164 expr: ...,
165
166 i18n: {
167 COMPILED_ACTION: ...,
168 EDITOR_ACTION: ...,
169 PNG_ACTION: ...,
170 SOURCE_ACTION: ...,
171 SVG_ACTION: ...
172 }
173}
174```
175
176| Property | Type | Description |
177| :------- | :--------------- | :------------- |
178| `mode` | String | If specified, tells Vega-Embed to parse the spec as `vega` or `vega-lite`. Vega-Embed will parse the [`$schema` url](https://github.com/vega/schema) if the mode is not specified. Vega-Embed will default to `vega` if neither `mode`, nor `$schema` are specified. |
179| `config` | String / Object | _String_ : A URL string from which to load a [Vega](https://vega.github.io/vega/docs/config/)/[Vega-Lite](https://vega.github.io/vega-lite/docs/config.html) or [Vega-Lite](https://vega.github.io/vega-lite/docs/config.html) configuration file. This URL will be subject to standard browser security restrictions. Typically this URL will point to a file on the same host and port number as the web page itself. <br> _Object_ : A Vega/Vega-Lite configuration as a parsed JSON object to override the default configuration options. |
180| `theme` | String | If specified, tells Vega-Embed use the theme from [Vega Themes](https://github.com/vega/vega-themes). **Experimental: we may update themes with minor version updates of Vega-Embed.** |
181| `defaultStyle` | Boolean or String | If set to `true` (default), the embed actions are shown in a menu. Set to `false` to use simple links. Provide a string to set the style sheet. |
182| `bind` | String or Element | The element that should contain any input elements bound to signals. |
183| `renderer` | String | The renderer to use for the view. One of `"canvas"` (default) or `"svg"`. See [Vega docs](https://vega.github.io/vega/docs/api/view/#view_renderer) for details. May be a custom value if passing your own `viewClass` option. |
184| `logLevel` | Level | Sets the current log level. See [Vega docs](https://vega.github.io/vega/docs/api/view/#view_logLevel) for details. |
185| `tooltip` | Handler or Boolean or Object | Provide a [tooltip handler](https://vega.github.io/vega/docs/api/view/#view_tooltip), customize the default [Vega Tooltip](https://github.com/vega/vega-tooltip) handler, or disable the default handler. |
186| `loader` | Loader / Object | _Loader_ : Sets a custom Vega loader. _Object_ : Vega loader options for a loader that will be created. <br> See [Vega docs](https://vega.github.io/vega/docs/api/view/#view) for details. |
187| `patch` | Function / Object[] / String | A function to modify the Vega specification before it is parsed. Alternatively, a [JSON-Patch RFC6902](https://tools.ietf.org/html/rfc6902) to modify the Vega specification. If you use Vega-Lite, the compiled Vega will be patched. Alternatively to the function or the object, a URL string from which to load the patch can be provided. This URL will be subject to standard browser security restrictions. Typically this URL will point to a file on the same host and port number as the web page itself. |
188| `width` | Number | Sets the view width in pixels. See [Vega docs](https://vega.github.io/vega/docs/api/view/#view_width) for details. Note that Vega-Lite overrides this option. |
189| `height` | Number | Sets the view height in pixels. See [Vega docs](https://vega.github.io/vega/docs/api/view/#view_height) for details. Note that Vega-Lite overrides this option. |
190| `padding` | Object | Sets the view padding in pixels. See [Vega docs](https://vega.github.io/vega/docs/api/view/#view_padding) for details. |
191| `actions` | Boolean / Object | Determines if action links ("Export as PNG/SVG", "View Source", "View Vega" (only for Vega-Lite), "Open in Vega Editor") are included with the embedded view. If the value is `true`, all action links will be shown and none if the value is `false`. This property can take a key-value mapping object that maps keys (`export`, `source`, `compiled`, `editor`) to boolean values for determining if each action link should be shown. By default, `export`, `source`, and `editor` are true and `compiled` is false. These defaults can be overridden: for example, if `actions` is `{export: false, source: true}`, the embedded visualization will have two links – "View Source" and "Open in Vega Editor". The `export` property can take a key-value mapping object that maps keys (svg, png) to boolean values for determining if each export action link should be shown. By default, `svg` and `png` are true. |
192| `scaleFactor` | Number | The number by which to multiply the width and height (default `1`) of an exported PNG or SVG image. |
193| `editorUrl` | String | The URL at which to open embedded Vega specs in a Vega editor. Defaults to `"http://vega.github.io/editor/"`. Internally, Vega-Embed uses [HTML5 postMessage](https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage) to pass the specification information to the editor. |
194| `sourceHeader` | String | HTML to inject into the `head` tag of the page generated by the "View Source" and "View Vega" action link. For example, this can be used to add code for [syntax highlighting](https://highlightjs.org/). |
195| `sourceFooter` | String | HTML to inject into the end of the page generated by the "View Source" and "View Vega" action link. The text will be added immediately before the closing `body` tag. |
196| `hover` | Boolean or Object | Enable [hover event processing](https://vega.github.io/vega/docs/api/view/#view_hover). Hover event processing is enabled on Vega by default.<br> _Boolean_: Enables/disables hover event processing.<br> _Object_: Optional keys (`hoverSet`, `updateSet`) to specify which named encoding sets to invoke upon mouseover and mouseout. |
197| `i18n` | Object | This property maps keys (`COMPILED_ACTION`, `EDITOR_ACTION`, `PNG_ACTION`, `SOURCE_ACTION`, `SVG_ACTION`) to string values for the action's text. By default, the text is in English. |
198| `downloadFileName` | String | Sets the file name (default: `visualization`) for charts downloaded using the `png` or `svg` action. |
199| `formatLocale` | Object | Sets the default locale definition for number formatting. See the [d3-format locale collection](https://github.com/d3/d3-format/tree/master/locale) for definition files for a variety of languages. Note that this is a global setting. |
200| `timeFormatLocale` | Object | Sets the default locale definition for date/time formatting. See the [d3-time-format locale collection](https://github.com/d3/d3-time-format/tree/master/locale) for definition files for a variety of languages. Note that this is a global setting. |
201| `ast` | Boolean | Generate an [Abstract Syntax Tree (AST)](https://en.wikipedia.org/wiki/Abstract_syntax_tree) instead of expressions and use an interpreter instead of native evaluation. While the interpreter is slower, it adds support for Vega expressions that are [Content Security Policy (CSP)](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP)-compliant. |
202| `expr` | Object | Custom Vega Expression interpreter. |
203| `viewClass` | Class | Class which extends [Vega `View`](https://vega.github.io/vega/docs/api/view/#view) for custom rendering. |
204
205## Common questions
206
207### How do I send cookies when loading data?
208
209By default, the Vega loader does not send the credentials of the current page with requests. You can override this behavior by passing `{loader: { http: { credentials: 'same-origin' }}}` as the embed option.
210
211### What CSS should I use to support `container` sizing?
212
213When using [container](https://vega.github.io/vega-lite/docs/size.html#specifying-responsive-width-and-height) sizing in Vega-Lite, make sure to set the width of the DOM element you passed to Embed.
214
215## Build Process
216
217To build `vega-embed.js` and view the test examples, you must have [yarn](https://yarnpkg.com/en/) installed.
218
2191. Run `yarn` in the Vega-Embed folder to install dependencies.
2202. Run `yarn build`. This will create `vega-embed.js` and the minified `vega-embed.min.js`.
2213. Run a local webserver with `yarn start` then point your web browser at the test page (e.g., `http://localhost:8000/test-vg.html`(Vega) or `http://localhost:8000/test-vl.html`(Vega-Lite)).
222
223## Release Process
224
225Publishing is handled by a 2-branch [pre-release process](https://intuit.github.io/auto/docs/generated/shipit#next-branch-default), configured in `publish.yml`. All changes should be based off the default `next` branch, and are published automatically.
226
227- PRs made into the default branch that [would trigger a version bump](https://intuit.github.io/auto/docs/generated/conventional-commits) are auto-deployed to the `next` pre-release tag on NPM. The result can be installed with `npm install vega-embed/@next`.
228 - When merging into `next`, please use the `squash and merge` strategy.
229- To release a new stable version, open a PR from `next` into `stable` using this [compare link](https://github.com/vega/vega-embed/compare/stable...next).
230 - When merging from `next` into `stable`, please use the `create a merge commit` strategy.