Skip to main content

DiagramToolboxGroup.Title Property

Specifies the toolbox group’s title.

Namespace: DevExpress.Web.ASPxDiagram

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

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string Title { get; set; }

Property Value

Type Default Description
String String.Empty

The title.

Remarks

<dx:ASPxDiagram ID="Diagram" runat="server" Width="100%" Height="600px">
    <SettingsToolbox>
        <Groups>
            <dx:DiagramToolboxGroup Category="Containers" Title="Rooms" />
            <dx:DiagramToolboxGroup Category="Custom" CustomCategoryName="hardware" Title="Hardware" />
        </Groups>
    </SettingsToolbox>
    <CustomShapes>
        <dx:DiagramCustomShape CategoryName="hardware" Type="internet" ... >
    ...
</dx:ASPxDiagram>

Diagram Settings

Run Demo: Custom Shapes

See Also