ChunkProgressBarComponent
Represents the Kendo UI ChunkProgressBar component for Angular.
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
<kendo-chunkprogressbar
[value]="progressValue"
[chunkCount]="8">
</kendo-chunkprogressbar>
`
})
export class AppComponent {
public progressValue: number = 40;
}
Selector
kendo-chunkprogressbar
Export Name
Accessible in templates as #kendoChunkProgressBarInstance="kendoChunkProgressBar"
Inputs
Name | Type | Default | Description |
---|---|---|---|
chunkCount |
|
|
Sets the number of chunks into which the ChunkProgressBar will be split. |
disabled |
|
If set to | |
emptyCssClass |
|
Sets the CSS classes that will be rendered on the empty chunk elements (see example).
Supports the type of values that | |
emptyCssStyle |
|
Sets the CSS styles that will be rendered on the empty chunk elements (see example).
Supports the type of values that | |
indeterminate |
|
Sets the | |
max |
|
The maximum value of the ProgressBar.
Defaults to | |
min |
|
The minimum value of the ProgressBar.
Defaults to | |
orientation |
|
Defines the orientation of the ProgressBar
(see example).
Defaults to | |
progressCssClass |
|
Sets the CSS classes that will be rendered on the full chunk elements (see example).
Supports the type of values that | |
progressCssStyle |
|
Sets the CSS styles that will be rendered on the full chunk elements (see example).
Supports the type of values that | |
reverse |
|
If set to | |
value |
|
The value of the ProgressBar.
Has to be between |