Interface for a class DiagramConnectorShape
string
Sets the type of the Bpmn association flows
string
Defines the association direction
string
Sets the type of the Bpmn flows
number
Defines the height of the exception flow.
string
<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');
Defines the type of the Classifier Multiplicity
string
Defines the association direction
string
Sets the type of the Bpmn Sequence flows
string
Defines the application specific type of connector
string
Defines the type of the UMLActivity flows Object - Sets the type of the UMLActivity Flow as Object Control - Sets the type of the UMLActivity Flow as Control Exception - Sets the type of the UMLActivity Flow as Exception