BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
//Node
public nodes: NodeModel[] = [
{
id: 'node1',
offsetX: 100,
offsetY: 100,
width: 100,
height: 100,
shape: {
type: 'Native', content: '<svg width="400" height="110">' +
'<rect width="300" height="100" style="fill:rgb(0,0,255);" />' +
'</svg>'
},
},
];
//Connector
public connectors: ConnectorModel[] = [
{
id: 'connector1',
sourceID: 'node1',
targetID: 'node2',
sourcePortID: 'port2',
targetPortID: 'port1',
type: 'Orthogonal'
}
];
|