DiagramToolboxGroup.DisplayMode Property
Specifies how shapes are displayed in the toolbox.
Namespace: DevExpress.Web.ASPxDiagram
Assembly: DevExpress.Web.ASPxDiagram.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(DiagramToolboxGroupDisplayMode.Icons)]
public DiagramToolboxGroupDisplayMode DisplayMode { get; set; }
Property Value
Type | Default | Description |
---|---|---|
DiagramToolboxGroupDisplayMode | 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