I´m trying to create a diagram that is bound to a database using "diagram.bindingsource=someDataTable", is there any way to set default properties for all the nodes that will be automatically inserted? As, label text size, height and width, background color and so on...
The "Essential Diagram for Windows Forms.pdf", covers the loading procedure from the database, but not a thing about the nodes properties that will be inserted.
Thanks in advance.
Well...I think this can solve my own question.
Dim bRect As Syncfusion.Windows.Forms.Diagram.RoundRect = New RoundRect(0, 0, 10, 10, MeasureUnits.Millimeter)
bRect.FillStyle.Color = Color.Aqua
Diagram1.Binding.DefaultNode = bRect
Thanks anyway.