Interface for a class BpmnFlow
Sets the type of the Bpmn association flows
Sets the type of the Bpmn flows
<div id='diagram'></div>
let nodes: NodeModel[] = [
{
id: 'node1', width: 60, height: 60, offsetX: 75, offsetY: 90,
shape: { type: 'Bpmn', shape: 'Event', event: { event: 'Start', trigger: 'Message' } },
},
{
id: 'node2', width: 75, height: 70, offsetX: 210, offsetY: 90,
shape: { type: 'Bpmn', shape: 'Gateway', gateway: { type: 'None' } },
}];
let connectors: ConnectorModel[] = [{
id: 'connector', type: 'Straight', sourceID: 'node1', targetID: 'node2',
shape: { type: 'Bpmn', flow: 'Message', message: 'InitiatingMessage' } as BpmnFlowModel
},];
let diagram: Diagram = new Diagram({
...
nodes: nodes, connectors: connectors
...
});
diagram.appendTo('#diagram');
Sets the type of the Bpmn Sequence flows
Defines the application specific type of connector