ProgressBar TagHelper Overview
The Telerik UI ProgressBar TagHelper for ASP.NET Core is a server-side wrapper for the Kendo UI ProgressBar widget.
The ProgressBar offers rich functionalities for displaying and tracking the progress of a task. It supports multiple types, horizontal and vertical orientation, and also different directions.
Initializing the ProgressBar
The following example demonstrates how to define the ProgressBar by using the ProgressBar TagHelper.
<kendo-progressbar name="fastAndFurious" type="ProgressBarType.Percent" />
Basic Configuration
The ProgressBar TagHelper configuration options are passed as attributes of the tag.
@(Html.Kendo().ProgressBar()
.Name("fastAndFurious")
.Type(ProgressBarType.Percent)
.Animation(a => a.Duration(600))
)
<kendo-progressbar name="fastAndFurious"
type="ProgressBarType.Percent" animation-duration="600" />