5 Answers, 1 is accepted
Hello, Alex,
RadProgressBar offers Minimum and Maximum numeric properties which indicate the valid range values. You can either increase the Maximum to 150 or 200, or consider that the default Maximum=100 will be the greatest possible value (e.g. 200%). Thus, you will need to calculate the percentage values according to the value that RadProgressBar stores actually.
Feel free to use this approach which suits your requirements best.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Our thoughts here at Progress are with those affected by the outbreak.
I need it for a GridViewProgressColumn
Can I have an example? so that the control displays more than 100, the .Text property does not override the displayed percentages, logically it cannot be more than 100% i.e. more than maximum
or in the default WinForms I used for this ProgressBarRenderer to draw the progress bar in the cell myself, is there such an opportunity in your product?
sorry for terrible english
i resolved it. in Sub SetContentCore:
Me.radProgressBarElement.Value1 = Math.Min(Convert.ToInt16(Me.Value), 100)
Me.radProgressBarElement.Text = "{0} %".FormatArgs(Convert.ToInt16(Me.Value))
Hello, Alex,
I am glad that you have found a suitable solution for your scenario. I believe that you followed this example: https://docs.telerik.com/devtools/winforms/controls/gridview/cells/creating-custom-cells
Note that most of the forum threads are reviewed by Telerik representatives and sometimes we address the questions asked by our customers in the forums as well. However, a post in the forum doesn't guarantee you a response from the Telerik support team. Moreover, threads are handled according to license and time of posting, so if it is an urgent problem, we suggest you use a support ticket, which would be handled before a forum thread.
Thank you for your understanding.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik
Our thoughts here at Progress are with those affected by the outbreak.