Sets the value of id
attribute. If not provided it will be automatically generated.
<igx-circular-bar [id]="'igx-circular-bar-55'"></igx-circular-bar>
An event, which is triggered after progress is changed.
public progressChange(event) {
alert("Progress made!");
}
//...
<igx-circular-bar (progressChanged)="progressChange($event)"></igx-circular-bar>
<igx-linear-bar (progressChanged)="progressChange($event)"></igx-linear-bar>
Sets the text visibility. By default, it is set to true.
<igx-circular-bar [textVisibility]="false"></igx-circular-bar>
Set type of the IgxCircularProgressBarComponent
. Possible options - default
, success
, info
, warning
, and error
.
<igx-circular-bar [type]="'error'"></igx-circular-bar>
Returns whether the progress bar
has animation true/false.
@ViewChild("MyProgressBar")
public progressBar: IgxLinearProgressBarComponent | IgxCircularBarComponent;
public animationStatus(event) {
let animationStatus = this.progressBar.animate;
alert(animationStatus);
}
Animating the progress. By default, it is set to true.
<igx-linear-bar [animate]="false"></igx-linear-bar>
<igx-circular-bar [animate]="false"></igx-circular-bar>
Gets the current state of the progress bar:
true
if in the indeterminate state (no progress value displayed),false
if the progress bar shows the actual progress.const isIndeterminate = progressBar.indeterminate;
Sets progressbar in indeterminate. By default, it is set to false.
<igx-linear-bar [indeterminate]="true"></igx-linear-bar>
<igx-circular-bar [indeterminate]="true"></igx-circular-bar>
Returns the maximum progress value of the progress bar
.
@ViewChild("MyProgressBar")
public progressBar: IgxLinearProgressBarComponent | IgxCircularBarComponent;
public maxValue(event) {
let max = this.progressBar.max;
alert(max);
}
Set maximum value that can be passed. By default it is set to 100.
<igx-linear-bar [max]="200"></igx-linear-bar>
<igx-circular-bar [max]="200"></igx-circular-bar>
Returns the value which update the progress indicator of the progress bar
.
@ViewChild("MyProgressBar")
public progressBar: IgxLinearProgressBarComponent | IgxCircularBarComponent;
public stepValue(event) {
let step = this.progressBar.step;
alert(step);
}
Sets the value by which progress indicator is updated. By default, it is 1.
<igx-linear-bar [step]="1"></igx-linear-bar>
<igx-circular-bar [step]="1"></igx-circular-bar>
Gets a custom text.
let text = this.circularBar.text;
Set a custom text. This will hide the counter value.
<igx-circular-bar text="my text"></igx-circular-bar>
Returns value that indicates the current IgxLinearProgressBarComponent
/IgxCircularProgressBarComponent
position.
@ViewChild("MyProgressBar")
public progressBar: IgxLinearProgressBarComponent / IgxCircularProgressBarComponent;
public getValue(event) {
let value = this.progressBar.value;
alert(value);
}
Set value that indicates the current IgxLinearProgressBarComponent / IgxCircularProgressBarComponent
position.
<igx-linear-bar [value]="50"></igx-linear-bar>
<igx-circular-bar [value]="50"></igx-circular-bar>
Returns the IgxLinearProgressBarComponent
/IgxCircularProgressBarComponent
value in percentage.
@ViewChild("MyProgressBar")
public progressBar: IgxLinearProgressBarComponent / IgxCircularProgressBarComponent
public valuePercent(event){
let percentValue = this.progressBar.valueInPercent;
alert(percentValue);
}
Sets/Gets progressbar animation duration. By default, it is 2000ms.