Skip to main content
A newer version of this page is available. .

DiagramPropertiesPanelSettings.Visibility Property

Specifies the properties panel’s visibility.

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v20.2.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 Controls and MVC Extensions ASPxDiagram
ASP.NET MVC Extensions DiagramSettings
MVCxDiagram

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