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