Hi,
I have a PivotGridColumn:
And I have the data loaded in for the pivot grid in reverse year order (example 2022, 2021, 2020), but when I go to test the grid the columns are reordered in ascending order. By design, I'm not allowed to add extra complexity of the configurator, as our users will only be shown one specific view with an optional aggregation.
What can I leverage to get the columns in the correct order?
Edited to add details:
Using a Local DataProviderType, 2 PivotGridRows, 1 PivotGridMeasure (Sum).
All the internal guts of the grid itself are fine (numbers are where they should be, etc.),
Just can't seem to reorder the year columns programatically.
I have a PivotGridColumn:
<PivotGridColumns>
<PivotGridColumn Name="@nameof(PivotIpEncounterDetail.Year)"></PivotGridColumn>
</PivotGridColumns>
What can I leverage to get the columns in the correct order?
Edited to add details:
Using a Local DataProviderType, 2 PivotGridRows, 1 PivotGridMeasure (Sum).
All the internal guts of the grid itself are fine (numbers are where they should be, etc.),
Just can't seem to reorder the year columns programatically.