In my dataset for a pivot table I have four fields for drill down columns (Year, Quarter, Month, Week). Those fields hold an integer to represent the year, quarter, month and week respectively.
How can I bind a formatter to the column headers? E.g. to show the month as JAN, FEB, etc?
I tried "Caption" in <PivotViewColumn> but I don't have a context and if I bind a function that returns a string, that string is never rendered
I tried <PivotViewFormatSetting> but that doesn't seem to work either
I also tried changing my model class so that it returns already formatted fields. But then I'm losing sortability (February showing up before January)