How to provide a scroll for rows or scroll the entire grid as like EXCEL
It can be achieved by using the FreezeHeaders property by setting the value to false.The following code snippet explains the same.
C#
this.pivotGrid.FreezeHeaders = false;
XAML
<syncfusion:PivotGridControl VerticalAlignment="Top" Margin="5" Grid.Row="2" FreezeHeaders="False" x:Name="pivotGrid1" ItemSource="{Binding ProductSalesData}">
