ChunkProgressBarComponent
Represents the Kendo UI ChunkProgressBar component for Angular.
@Component({
selector: 'my-app',
template: `
<kendo-chunkprogressbar [value]="value">
</kendo-chunkprogressbar>
`
})
class AppComponent {
public value = 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.
Defaults to | |
disabled |
|
If set to | |
emptyCssClass |
|
The CSS classes that will be rendered on the empty chunk elements (see example).
Supports the type of values that are supported by | |
emptyCssStyle |
|
The CSS styles that will be rendered on the empty chunk elements (see example).
Supports the type of values that are supported by | |
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 |
|
The CSS classes that will be rendered on the full chunk elements (see example).
Supports the type of values that are supported by | |
progressCssStyle |
|
The CSS styles that will be rendered on the full chunk elements (see example).
Supports the type of values that are supported by | |
reverse |
|
If set to | |
value |
|
The value of the ProgressBar.
Has to be between |