Hi I need to apply "None" as ListSortDirection on a Grouping column programmatically but only "Ascending" and "Descending" values are possible.
GroupDescriptor groupByTemperature =
new
GroupDescriptor();
groupByTemperature.GroupNames.Add(
"Temperature"
, ListSortDirection.Ascending);
Any idea of how perform this action?
Francisco