const swimLaneShapes: NodeModel[] = [
{
id: 'Horivontal SwimLane', shape: { type: 'SwimLane', lanes: [
{
id: 'lane1',
style: { strokeColor: 'black' }, height: 60, width: 150,
header: { width: 50, height: 50, style: { strokeColor: 'black', fontSize: 11 } },
}
], orientation: 'Horizontal', isLane: true}, width:140, height:60
},
{
id: 'Vertical SwimLane', shape: {type: 'SwimLane', lanes: [
{
id: 'lane1',
style: { strokeColor: 'black' }, height: 60, width: 150,
header: { width: 50, height: 50, style: { strokeColor: 'black', fontSize: 11 } },
}
], orientation: 'Horizontal', isLane: true
}, width:60, height:140
}
]
|