Skip to main content

PivotGridTextsBuilder.SortRowBySummary(String) Method

The string to display as a Sort Row by Summary Value context menu item. Mirrors the client-side sortRowBySummary option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public PivotGridTextsBuilder SortRowBySummary(
    string value
)

Parameters

Name Type Description
value String

The option value.

Returns

Type Description
PivotGridTextsBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().PivotGrid()
    .Texts(texts => texts
        .SortRowBySummary("Custom text")
    )
)
See Also