How to Render the Swimlane in WPF Diagram?
In the WPF Diagram, you can render the Swimlane at the top-left corner of the diagram by setting both the OffsetX and OffsetY values to 0, and configure the Swimlane’s Pivot property to (0, 0). We have provided the code example for how to achieve this.
Code Snippet:
//Initialize the SwimlaneCollection to SfDiagram
diagram.Swimlanes = new SwimlaneCollection();
//Creating the SwimlaneViewModel
SwimlaneViewModel swimlane = new SwimlaneViewModel()
{
UnitWidth = 450,
UnitHeight = 120,
//orientation of the lane
Orientation = Orientation.Horizontal,
//Set pivot position as (0,0) to render the lane from top left position.
Pivot = new Point(0, 0),
//position of the lane. set offset as (0,0) to position the lane at top left corner of the page
OffsetX = 0,
OffsetY = 0,
//Header of the lane
Header = new SwimlaneHeaderViewModel()
{
UnitHeight = 25,
Annotation = new AnnotationEditorViewModel()
{
Content = "Swimlane",
},
},
};
//Add Swimlane to the Swimlanes property of the Diagram
(diagram.Swimlanes as SwimlaneCollection).Add(swimlane);
Conclusion
I hope you enjoyed learning about how to render the Swimlane in the WPF Diagram.
You can refer to our WPF Diagram feature tour page to learn about its other groundbreaking feature representations and documentation, You can also explore our WPF Diagram example to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!