How to customize the ProgressBarColumn text in WinForms DataGrid ?
By default, SfDataGrid GridProgressBarColumn have maximum value as 100, you can change the this by overriding the OnRender method in GridProgressBarColumnCellRenderer class.
this.sfDataGrid.CellRenderers.Remove("ProgressBar"); this.sfDataGrid.CellRenderers.Add("ProgressBar", new GridProgressBarColumnExt(new ProgressBarAdv()));public class GridProgressBarColumnExt : GridProgressBarCellRenderer { ProgressBarAdv ProgressBar; public GridProgressBarColumnExt(ProgressBarAdv progressBar) : base(progressBar) { ProgressBar = progressBar; } protected override void OnRender(Graphics paint, Rectangle cellRect, string cellValue, CellStyleInfo style, DataColumnBase column, RowColumnIndex rowColumnIndex) { ProgressBar.CustomText = cellValue + "%"; ProgressBar.TextStyle = ProgressBarTextStyles.Custom; decimal decimalvalue = decimal.Parse(cellValue); var intvalue = decimal.ToInt32(decimalvalue); cellValue = intvalue.ToString(); base.OnRender(paint, cellRect, cellValue, style, column, rowColumnIndex); } }
Conclusion
I hope you enjoyed learning about how to customize the ProgressBarColumn text in WinForms DataGrid.
You can refer to our WinForms DataGrid feature tour page to
know about its other groundbreaking feature representations documentation
and how to quickly get started for configuration
specifications. You can also explore our WinForms DataGrid example
to understand how to create and manipulate data.
For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.
If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!