Category / Section
How to add space between decorator and node in WPF Diagram (SfDiagram)?
1 min read
You can add the space between node and all its connected edges by using ConnectorPadding property in WPF Diagram (SfDiagram). Please refer to the code example as below.
C#
NodeViewModel n = new NodeViewModel() { // space between the Nodes and it’s In/Out Connectors. ConnectorPadding = 5, };