Skip to main content
All docs
V19.2

DiagramSidePanelSettings.Visibility Property

Specifies the Side Panel’s visibility.

Namespace: DevExpress.Web.ASPxDiagram

Assembly: DevExpress.Web.ASPxDiagram.v19.2.dll

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:

Object Type Path to Visibility
ASPxDiagram
.SettingsSidePanel.Visibility
DiagramSettings
.SettingsSidePanel.Visibility
MVCxDiagram
.SettingsSidePanel.Visibility

Remarks

<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
    <SettingsSidePanel Visibility="Visible" />
</dx:ASPxDiagram>

Users can click Floating Action Button to show or hide the Toolbox. When the toolbox is disabled, the Floating Action Button is hidden.

See Also