We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

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.
Live Chat Icon For mobile
Up arrow icon