Progress
BitProgress is used to show the completion status of an operation lasting more than 2 seconds. If the state of progress cannot be determined, use a Spinner instead. Progress can appear in a new panel, a flyout, under the UI initiating the operation, or even replace the initiating UI, as long as the UI can return if the operation is canceled or is stopped. Real-world examples include copying files to a storage location, saving edits to a file, and more. Use units that are informative and relevant to give the best idea to users of how long the operation will take to complete. Avoid time units as they are rarely accurate enough to be trustworthy. Also, combine steps of a complex operation into one total bar to avoid “rewinding” the bar. Instead, change the operation description to reflect the change if necessary. Bars moving backward reduce confidence in the service.
Usage
Basic
Example description
Circular
Example description
ShowPercentNumber
86 %
85.69 %
86 %
85.69 %
Thickness
69 %
69 %
Indeterminate
Color
Style & Class
Component's Style & Class:
Styles & Classes:
RTL
69 %
توضیحات تست
69 %
توضیحات تست
API
BitProgress parameters
Name |
Type |
Default value |
Description |
---|---|---|---|
AriaValueText | string? | null | Text alternative of the progress status, used by screen readers for reading the value of the progress. |
Classes | BitProgressClassStyles? | null | Custom CSS classes for different parts of the BitProgress. |
Color | string? | null | Color of the BitProgress. |
Circular | bool | false | Circular mode of the BitProgress. |
Description | string? | null | Text describing or supplementing the operation. |
DescriptionTemplate | RenderFragment? | null | Custom template for describing or supplementing the operation. |
Indeterminate | bool | false | Whether or not to show indeterminate progress animation. |
Label | string? | null | Label to display above the BitProgress. |
LabelTemplate | RenderFragment? | null | Custom label template to display above the BitProgress. |
Percent | double | 0 | Percentage of the operation's completeness, numerically between 0 and 100. |
PercentNumberFormat | string | {0:F0} | The format of the percent in percentage display. |
Radius | int | 6 | The radius of the circular progress. |
ShowPercentNumber | bool | false | Whether or not to percentage display. |
Styles | BitProgressClassStyles? | null | Custom CSS Styles for different parts of the BitProgress. |
Thickness | int | 2 | Thickness of the BitProgress. |
BitComponentBase parameters
Name |
Type |
Default value |
Description |
---|---|---|---|
AriaLabel | string? | null | The aria-label of the control for the benefit of screen readers. |
Class | string? | null | Custom CSS class for the root element of the component. |
Dir | BitDir? | null | Determines the component direction. |
HtmlAttributes | Dictionary<string, object> | new Dictionary<string, object>() | Capture and render additional attributes in addition to the component's parameters. |
Id | string? | null | Custom id attribute for the root element. if null the UniqueId will be used instead. |
IsEnabled | bool | true | Whether or not the component is enabled. |
Style | string? | null | Custom CSS style for the root element of the component. |
Visibility | BitVisibility | BitVisibility.Visible | Whether the component is visible, hidden or collapsed. |
BitComponentBase public members
Name |
Type |
Default value |
Description |
---|---|---|---|
UniqueId | Guid | Guid.NewGuid() | The readonly unique id of the root element. it will be assigned to a new Guid at component instance construction. |
RootElement | ElementReference | The ElementReference of the root element. |
BitProgressClassStyles properties
Name |
Type |
Default value |
Description |
---|---|---|---|
Root | string? | null | Custom CSS classes/styles for the root element of the BitProgress. |
Label | string? | null | Custom CSS classes/styles for the label of the BitProgress. |
PercentNumber | string? | null | Custom CSS classes/styles for the percent number of the BitProgress. |
BarContainer | string? | null | Custom CSS classes/styles for the bar container of the BitProgress. |
Track | string? | null | Custom CSS classes/styles for the track of the BitProgress. |
Bar | string? | null | Custom CSS classes/styles for the bar of the BitProgress. |
Description | string? | null | Custom CSS classes/styles for the description of the BitProgress. |
BitVisibility enum
Name |
Value |
Description |
---|---|---|
Visible | 0 | The content of the component is visible. |
Hidden | 1 | The content of the component is hidden, but the space it takes on the page remains (visibility:hidden). |
Collapsed | 2 | The component is hidden (display:none). |
BitDir enum
Name |
Value |
Description |
---|---|---|
Ltr | 0 | Ltr (left to right) is to be used for languages that are written from the left to the right (like English). |
Rtl | 1 | Rtl (right to left) is to be used for languages that are written from the right to the left (like Arabic). |
Auto | 2 | Auto lets the user agent decide. It uses a basic algorithm as it parses the characters inside the element until it finds a character with a strong directionality, then applies that directionality to the whole element. |
- On this page