PdfRpt.FluentInterface.ColumnItemsTemplateBuilder.ProgressBar C# (CSharp) Method

ProgressBar() public method

Displaying current cell's data as text plus a ProgressBar.
public ProgressBar ( Func progressBarColorFormula, bool showPercentText ) : void
progressBarColorFormula Func Progress bar's background color based on the current row's values.
showPercentText bool Indicates whether the percentage text should be displayed or not.
return void
        public void ProgressBar(Func<IList<CellData>, System.Drawing.Color> progressBarColorFormula, bool showPercentText)
        {
            _columnItemsTemplate = new ProgressBarField { ProgressBarColorFormula = progressBarColorFormula, ShowPercentText = showPercentText };
        }

Same methods

ColumnItemsTemplateBuilder::ProgressBar ( System progressBarColor, bool showPercentText ) : void