SankeyBuilder.SortData(Object) Method
In This Article
Specifies nodes' sorting order in their columns. Mirrors the client-side sortData option.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public SankeyBuilder SortData(
object value
)
#Parameters
Name | Type | Description |
---|---|---|
value | Object | The option value. |
#Returns
Type | Description |
---|---|
Sankey |
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