ProgressBarAnimationBuilder
Methods
Enable(System.Boolean)
Enables or disables the progress animation
Parameters
enable - System.Boolean
The boolean value
Example
@( Html.Kendo().ProgressBar()
.Name("progressBar")
.Animation(a => a.Enable(false))
)
Duration(System.Int32)
Specifies the duration of the progress animation
Parameters
value - System.Int32
The duration value
Example
@( Html.Kendo().ProgressBar()
.Name("progressBar")
.Animation(a => a.Duration(200))
)