DiagramSettings.SettingsGrid Property
Provides access to grid settings.
Namespace: DevExpress.Web.Mvc
Assembly: DevExpress.Web.Mvc5.v25.1.dll
NuGet Package: DevExpress.Web.Mvc5
Declaration
Property Value
| Type | Description |
|---|---|
| DiagramGridSettings | An object that contains the grid settings. |
Remarks
@Html.DevExpress().Diagram(settings => {
settings.Name = "Diagram";
settings.Units = DevExpress.Web.ASPxDiagram.DiagramUnit.Cm;
settings.SettingsGrid.Size = 1;
settings.SettingsGrid.Visible = false;
}).Import(Model).GetHtml()
See Also