Skip to main content

SankeyBuilder.SortData(Object) Method

Specifies nodes' sorting order in their columns. Mirrors the client-side sortData option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public SankeyBuilder SortData(
    object value
)

Parameters

Name Type Description
value Object

The option value.

Returns

Type Description
SankeyBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Sankey()
    .SortData(new Dictionary<string, object> { ["Australia"] = 3, ["New Zealand"] = 1, ["Japan"] = 2 })
)
See Also