Skip to main content

DiagramToolboxBuilder.Groups(IEnumerable<DiagramShapeCategory>) Method

Lists toolbox groups. Mirrors the client-side groups option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public DiagramToolboxBuilder Groups(
    IEnumerable<DiagramShapeCategory> value
)

Parameters

Name Type Description
value IEnumerable<DiagramShapeCategory>

The option value.

Returns

Type Description
DiagramToolboxBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().Diagram()
    .Toolbox(toolbox => toolbox
        .Groups(new[] { DiagramShapeCategory.Containers })
    )
)
See Also