How do I change the background of the diagram control?
Change background of the diagram control
The diagram control''s background is provided by the Diagram''s Model component. To change the background you will have to provide suitable values for the diagram.Model.BackgroundStyle property.
To set an image for the background you can assign the image to the diagram.Model.BackgroundStyle.Texture property, set the BackgroundStyle.Type as Texture and the TextureWrapMode to Tile, Clamp or one of the other options. The fllowing code should give you an idea,
C#
this.diagramComponent.Model.BackgroundStyle.Texture = ((System.Drawing.Image)(resources.GetObject("diagramComponent.Model.BackgroundStyle.Texture"))); this.diagramComponent.Model.BackgroundStyle.Type = Syncfusion.Windows.Forms.Diagram.BackgroundStyleType.Texture;
|
VB
Private Me.diagramComponent.Model.BackgroundStyle.Texture = (CType(resources.GetObject("diagramComponent.Model.BackgroundStyle.Texture"), System.Drawing.Image)) Private Me.diagramComponent.Model.BackgroundStyle.Type = Syncfusion.Windows.Forms.Diagram.BackgroundStyleType.Texture |
For additional information:
Please refer to the Class Reference documentation on the Syncfusion.Windows.Forms.Diagram.Model.BackgroundStyle property and the Syncfusion.Windows.Forms.Diagram.BackgroundStyle class for additional details on setting the diagram background.
Conclusion
I hope you enjoyed learning about how to change the background of the diagram control.
You can refer to the WinForms Diagram feature tour page to learn about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WinForms Diagram example to understand how to create and manipulate data.
For current customers, you can check out our 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 other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!