New to Kendo UI for Angular? Start a free 30-day trial
LabelSettings
Represents the settings of the label which indicates the progress status of the ProgressBar.
ts
@Component({
selector: 'my-app',
template: `
<kendo-progressbar
[value]="value"
[label]="label">
</kendo-progressbar>
`
})
class AppComponent {
public value = 50;
public label = {
visible: true,
position: 'start',
format: 'percent'
};
}
Name | Type | Default | Description |
---|---|---|---|
format? |
|
Sets the format that will be used when rendering the value in the label.
The supported preset types are | |
position? |
|
Sets the position of the progress status label. The accepted values are:
| |
visible? |
|
Determines whether the label for the progress status will be visible. |