DiagramPropertiesPanelSettings.Visibility Property
Specifies the properties panel’s visibility.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(DiagramPanelVisibility.Auto)]
public DiagramPanelVisibility Visibility { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DiagramPanelVisibility | Auto | The panel’s visibility. |
Available values:
Name | Description |
---|---|
Visible | The panel is initially visible. |
Collapsed | The panel is collapsed initially. |
Disabled | The panel is disabled. An element that can invoke the panel is hidden. |
Auto | The panel is disabled when the diagram is read-only. |
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to Visibility |
---|---|---|
ASP.NET Web Forms Controls | ASPxDiagram |
|
ASP.NET MVC Extensions | DiagramSettings |
|
Remarks
<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
<SettingsPropertiesPanel Visibility="Visible" />
...
</dx:ASPxDiagram>
Users can click Floating Action Button to show or hide the properties panel. When the properties panel is disabled, the Floating Action Button is hidden.
See Also