SigmaJs

UI Extension

sigma.js is a JavaScript library dedicated to graph drawing, providing a performant rendering engine for large networks.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #127
KEY FEATURES
Graph rendering
WebGL
Large networks
Interactive
Force-directed
Custom renderers
GEXF support
Usage Example

Here's how you'll use SigmaJs with Oorian once the extension is available:

Java
// Create and configure SigmaJs component
SigmaJs component = new SigmaJs();
component.setWidth("100%");
component.setHeight("400px");

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

// Register for events using Oorian's event model
component.registerForEvent(this, SigmaJsEvent.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.