Hi,
In the following articles
https://help.syncfusion.com/wpf/sfdiagram/stencil
There is an example of creating symbols
But in one of the samples you can find the following code
<stencil:Stencil.SymbolSource>
<local:SymbolCollection>
<!--BasicShapes-->
<local:NodeVm UnitWidth="60" UnitHeight="60"
Shape="{StaticResource Rectangle}" Key="Basic Shapes">
</local:NodeVm>
</local:SymbolCollection>
</stencil:Stencil.SymbolSource>
NodeVm doesnot implmement ISymbol as mentioned in the article
How can i bind SymbolSource to a collection of NodeVM from my view model?
Thanks in advance
Tomer