CytoscapeJs
UI Extension
Cytoscape.js is a graph theory library for visualizing and analyzing network graphs with layouts, styles, and interactions.
Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #123
KEY FEATURES
Network graphs
Graph layouts
Styling
Animation
Graph analysis
Touch support
Extensions
Usage Example
Here's how you'll use CytoscapeJs with Oorian once the extension is available:
Java
// Create and configure CytoscapeJs component
CytoscapeJs component = new CytoscapeJs();
component.setWidth("100%");
component.setHeight("400px");
// Configure component options
component.setEnabled(true);
// Register for events using Oorian's event model
component.registerForEvent(this, CytoscapeJsEvent.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.