Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
You can inspect the rendered HTML of the control and devise CSS rules that will change the appearance as desired. The following post can help you get started with that: https://www.telerik.com/blogs/improve-your-debugging-skills-with-chrome-devtools.
Here's a small example I created for you so you can also use that as reference and base:
<style>
.RadProgressBar.myCustomAppearance {
background-color
:
red
;
}
.RadProgressBar.myCustomAppearance .rpbLabelWrapper {
border-radius:
0
</style>
<telerik:RadProgressBar runat=
"server"
ID=
"rpb1"
CssClass=
"myCustomAppearance"
Value=
"30"
></telerik:RadProgressBar>