Hello,
How can I format the display of the
<PivotViewColumn Name="ReportDate"></PivotViewColumn> to display Name of Month (eg. Jan. Feb, mar etc) from a date column?
I have a Pivot Table below:
<SfPivotView TValue="vUoMError" @ref="@pivot" AllowExcelExport=true Height="300">
<PivotViewDataSourceSettings DataSource="@dataSource">
<PivotViewFilters>
<PivotViewFilter Name="CSO"></PivotViewFilter>
<PivotViewFilter Name="FY"></PivotViewFilter>
</PivotViewFilters>
<PivotViewColumns>
<PivotViewColumn Name="ReportDate"></PivotViewColumn>
<PivotViewColumn Name="Qtr"></PivotViewColumn>
</PivotViewColumns>
<PivotViewRows>
<PivotViewRow Name="Level"></PivotViewRow>
</PivotViewRows>
<PivotViewValues>
<PivotViewValue Name="UoM_Error" Caption="Error"></PivotViewValue>
<PivotViewValue Name="Qty" Caption="Qty"></PivotViewValue>
<PivotViewValue Name="Divisor"></PivotViewValue>
</PivotViewValues>
<PivotViewFormatSettings>
<PivotViewFormatSetting Name="UoM_Error" Format="N"></PivotViewFormatSetting>
</PivotViewFormatSettings>
</PivotViewDataSourceSettings>
</SfPivotView>
Best regards