ProgressBar

in namespace DotVVM.Bootstrap5.Controls

Renders Bootstrap progress bar.

Usage & Scenarios

Renders Bootstrap Progress Bar widget.

https://getbootstrap.com/docs/5.2/components/progress/

Sample 1: Basic Progress Bar

The ProgressBar control has the Value property that sets value between 0 and 100. Contextual color of ProgressBar can be set with Color property.

To show ProgressBar custom text or label, place it inside the control. Default label is blank.

It is also possible to have hidden label in progress bar with HiddenTemplate element. This content is wrapped in sr-only CSS class to be read by screen readers.

<bs:ProgressBar Value="25">
  25% completed...
</bs:ProgressBar>

<bs:ProgressBar Color="Info" Value="85">
  <HiddenTemplate>
    69% completed...
  </HiddenTemplate>
</bs:ProgressBar>

Sample 2: Striped and Animated Progress Bars

You can set ProgressBar to have various skins using the VisualStyle property - the options are Solid, Striped or AnimatedStriped.

<bs:ProgressBar Color="Danger" VisualStyle="Striped" Value="39">
  39%
</bs:ProgressBar>


<bs:ProgressBar Color="Success" VisualStyle="AnimatedStriped" Value="100">
  COMPLETED
</bs:ProgressBar>

Sample 3: ProgressBar - Bindings

The Value and Color properties of ProgressBar are bindable.

  <bs:ProgressBar Value="{value: Width}" Color="{value: Color}">
    {{value: Width}}%
  </bs:ProgressBar>

<dot:Button Text="Change width" Click="{command: ChangeWidth()}" />
<dot:Button Text="Change color" Click="{command: ChangeColor()}" />
public class ViewModel : DotvvmViewModelBase
{
    public double Width { get; set; } = 95;
    public BootstrapColor Color { get; set; } = BootstrapColor.Info;

    public void ChangeWidth()
    {
        var random = new Random();
        Width = random.Next(101);
    }

    public void ChangeColor()
    {
        var colors = Enum.GetValues(typeof(BootstrapColor)).Cast<BootstrapColor>().ToList();
        var random = new Random();
        var c = random.Next(colors.Count);
        Color = colors[c];
    }
}

Properties

Name Type Description Notes Default Value
property icon Color BootstrapColor Gets or sets the color of the control.
attribute
inner element
static value
bindable
default
Primary
property icon HiddenTemplate ITemplate Gets or sets additional hidden information of the progress bar.
attribute
inner element
static value
bindable
default
null
property icon Value Double Gets or sets the percentage value (0-100) indicating the current progress.
attribute
inner element
static value
bindable
default
null
property icon Visible Boolean Gets or sets whether the control is visible. When set to false, `style="display: none"` will be added to this control.
attribute
inner element
static value
bindable
default
True
property icon VisualStyle ProgressBarVisualStyle Gets or sets whether the progress bar has solid fill, stripes or animated stripes.
attribute
inner element
static value
bindable
default
Solid

HTML produced by the control