Articles in this section
Category / Section

How can I apply FillStyle.Color property to grouped nodes?

1 min read

There is no directed way to fill the interier of grouped nodes with required color. But you can try the following workaround. In the attached sample first, I have ungrouped all the grouped nodes by using UnGroup() method of WinForms Diagram Controller. Then iterated through the Nodes collection and set the FillStyle.Color for each node. Finally grouped all nodes by using Group() method. You can use the FillPath.FillStyle.Color to fill the interior of node with required color.

C#

FilledPath fillpath;
this.diagram1.Controller.UnGroup();
foreach (Node node in this.diagram1.Model.Nodes)
{
fillpath = (FilledPath)(((node is FilledPath) ? node : null));
fillpath.FillStyle.Color = Color.Green;
}
this.diagram1.Controller.Group();
 

 

VB

Dim fillpath As FilledPath
Me.diagram1.Controller.UnGroup()
For Each node As Node In Me.diagram1.Model.Nodes
If (TypeOf node Is FilledPath) Then
fillpath = CType((node), FilledPath)
Else
fillpath = CType((Nothing), FilledPath)
End If
fillpath.FillStyle.Color = System.Drawing.Color.Blue
Next node
Me.diagram1.Controller.Group()
 

Conclusion

I hope you enjoyed learning about how can I apply FillStyle.Color property to grouped nodes.

You can refer to our WinForms Diagram’s feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms Diagram documentation to understand how to present and manipulate data.

For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms Diagram and other WinForms components.

If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied