Konva

UI Extension

Konva is a 2D canvas framework for desktop and mobile with object model, event system, and high-performance rendering.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #126
KEY FEATURES
2D canvas
Object model
Event system
Drag and drop
Filters
Animation
Image export
Usage Example

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

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

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

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