How do you add the symbol description? Is there an example?
|
new DiagramNode()
{
Id = "process",
Shape = new DiagramShape()
{
Type = Shapes.Flow,
FlowShape = Syncfusion.Blazor.Diagrams.FlowShapes.Process
},
// Sets symbol description for process shape.
SymbolInfo= new SymbolInfo()
{
Description= new Syncfusion.Blazor.Diagrams.SymbolDescription
{
Text="Process"
}
}
}, |