Category / Section
How to expand all symbol groups in WPF Diagram (SfDiagram)?
1 min read
WPF Diagram (SfDiagram) provides support to expand all SymbolGroups by using the ExpandMode property of the Stencil. Please refer to the code example given below.
C#
<stencil:Stencil x:Name="symbolstencil" Grid.Column="0" ExpandMode="All" > <stencil:Stencil.SymbolGroups> <stencil:SymbolGroups> <stencil:SymbolGroupProvider MappingName="GroupName"/> </stencil:SymbolGroups> </stencil:Stencil.SymbolGroups> </stencil:Stencil>