Hello
I have a couple of questions regarding XamPivotGrid and FlatDataSource.
1.
I have a HierarchyDescriptor with a month:
dateTimeDataDescriptor.AddLevel<DateTime>(date => date.ToString("MMM", CultureInfo.CurrentCulture), "Months" );
It will give me the months like: jan, feb, mar, etc. The problem is when I sort, which will be sorted alphabetically. This is not correct in this case as you would expect jan to be first. Is there any way to control this?
2.
How do I set the default sorting to ASC. Whenever I add a row or a column I would like it to be sorted.