How can I get column resize to work on a Pivot Grid in WinForms

the PivotGridControl1.allowResizeColumns is not available in Winforms. is there another way to allow resizing of the columns in the Pivot Grid in WinForms?

1 Reply

JP Jagadeesan Pichaimuthu Syncfusion Team July 9, 2019 09:32 AM UTC

Hi George, 
 
Thanks for using Syncfusion product. 
 
You can able to achieve your requirement by enable the PivotGridControl.TableControl.AllowColumnResizeUsingCellBoundaries property. Please refer the below code snippet. 
 
// Allow resize the columns 
this.pivotGridControl1.TableControl.AllowColumnResizeUsingCellBoundaries = true; 
// Allow resize the Rows 
this.pivotGridControl1.TableControl.AllowRowResizeUsingCellBoundaries = true; 
 
 
Let us know whether this helps also if you need any further assistance on this. 
 
Regards, 
Jagadeesan

Loader.
Up arrow icon