Bootstrap Spinner (usually indicates an operation in progress).
Use the border spinners for a lightweight loading indicator.
<HxSpinner />You can customize the color of the spinner with the Color parameter.
If you don't prefer a border spinner, switch to the grow spinner. While it doesn't technically spin, it does repeatedly grow!
<HxSpinner Type="SpinnerType.Grow" />Once again, you can customize the color of the spinner with the Color parameter.
<HxSpinner Size="SpinnerSize.Small" />
<HxSpinner Size="SpinnerSize.Small" Type="SpinnerType.Grow" />| Name | Type | Description |
|---|---|---|
| Color | ThemeColor |
Spinner color. |
| CssClass | string |
Additional CSS class to be applied. |
| Size | SpinnerSize |
Spinner size. You can also use a custom CssClass to change the dimensions as needed. |
| Type | SpinnerType |
Spinner type. The spinner type can be Border (default) or Grow. |