Vega / Vega-Lite

UI Extension

Vega and Vega-Lite are declarative visualization grammars for creating interactive data visualizations with a JSON specification.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #161
KEY FEATURES
Declarative grammar
Interactive visualizations
JSON specification
Responsive
Data transforms
Scales and axes
Tooltips
Usage Example

Here's how you'll use Vega / Vega-Lite with Oorian once the extension is available:

Java
// Create and configure Vega / Vega-Lite component
VegaVegaLite component = new VegaVegaLite();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, VegaVegaLiteEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.