BoldDeskWe are launching BoldDesk on Product Hunt soon. Learn more & follow us.
I would like the spacing between horizontal and vertical gridlines to be the same as, or a multiple of, the diagram view's SnapOffsetX and SnapOffsetY. Is there a property I can use to set the spacing of gridlines?
Hi Jeff,
Regarding “Property for spacing
between horizontal and vertical gridlines”, your requirement have been
achieved by using GridHorizontalOffset and GridVerticalOffset Properties.
Please refer to the following online help
documentation link for more information about
Gridlines Property.
Link:
http://help.syncfusion.com/ug/wpf/documents/gridlines.htm
Please
let us know if you have any concerns.
Regards,
Saranya
C
Thank you for helping me find the answer in the documentation.
Should anyone else ever read this post, here is some additional useful information:
GridLineHorizontalOffset and GridLineVerticalOffset are properties of the DiagramPage class. DiagramView contains a property whose implementation is DiagramPage, but the property casts the DiagramPage to Panel before returning it. Therefore, in order to access the unique properties of DiagramPage, you must cast the DiagramView.Page property.
Here is the code that worked for me. Note that diagramView1 is a pre-existing reference to the relevant DiagramView:
var diagramPage = diagramView1.Page as DiagramPage;
diagramPage.GridHorizontalOffset = 12;
diagramPage.GridVerticalOffset = 12;
The documentation for DiagramPage.GridHorizontalOffset and .GridVerticalOffset contains code examples to a similar effect.
Hi Jeff,
Thanks update with the technical acknowledgement.
Please let us
know if you have any concerns
Regards,
MohanaPriya R