Increase width of rows header column Blazor Pivot Table

Hi there how can i increase the width of the rows header column in Blazor Pivot Table


4 Replies 1 reply marked as answer

MM Manikandan Murugesan Syncfusion Team January 3, 2022 09:05 AM UTC

Hi Muhammad, 

You can modify the column width for all columns dynamically by using “BeforeColumnRender” event. But currently we are facing a problem while modifying column width, and we have considered this as a bug “Column width not applied properly using BeforeColumnsRender event” and logged a defect report in our database. And the fix will be available in our Volume 4 SP release which is estimated to be rolled out at the end of January 2022. You can track the same by using below link. 
 

Please let us know if you have any concerns. 

Regards, 
Manikandan 



MW Muhammad Waqas January 5, 2022 09:33 AM UTC

grateful for your reply.



MM Manikandan Murugesan Syncfusion Team January 6, 2022 11:33 AM UTC

Hi Muhammad, 
 
Please let us know if you have any further questions. We are always happy to help you. 
 
Regards, 
Manikandan 



MM Manikandan Murugesan Syncfusion Team January 13, 2022 12:08 PM UTC

Hi Muhammad, 
 
We are glad to announce that our weekly patch release V19.4.42 is rolled out and fix for the reported issue has been included in this release. Please see the following code example and sample to increase the column width for the first column. 
 
Code Example: 
<SfPivotView TValue="PivotVirtualData"> 
    <PivotViewEvents TValue="PivotVirtualData" BeforeColumnsRender="BeforeColumnsRender"></PivotViewEvents> 
</SfPivotView> 
 
    private void BeforeColumnsRender(ColumnRenderEventArgs args) 
    { 
        args.Columns[0].Width = "300"; 
    } 
 
 
We thank you for your support and appreciate your patience in waiting for this release. Please contact us if you require any further assistance. 
 
Regards, 
Manikandan 


Marked as answer
Loader.
Up arrow icon