DiagramToolboxGroup.DisplayMode Property
In This Article
Specifies how shapes are displayed in the toolbox.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
[DefaultValue(DiagramToolboxGroupDisplayMode.Icons)]
public DiagramToolboxGroupDisplayMode DisplayMode { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Diagram |
Icons | The display mode. |
Available values:
Name | Description |
---|---|
Icons | Shapes are displayed as icons. |
Texts | Shapes are displayed as texts. |
#Remarks
<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
<SettingsToolbox>
<Groups>
<dx:DiagramToolboxGroup Category="FlowChart" DisplayMode="Texts" />
</Groups>
...
</dx:ASPxDiagram>
The image below shows the result.
See Also