Sets the value of the Progress bar to indeterminate state(null) and starts the animation.
Set the indeterminate property.
indeterminate
let progressBar = document.querySelector('jqx-progress-bar');
progressBar.indeterminate = false;
Get the indeterminate property.
let indeterminate = progressBar.indeterminate;
Sets the filling direction of the Progress Bar.
Set the inverted property.
inverted
progressBar.inverted = false;
Get the inverted property.
let inverted = progressBar.inverted;
A callback function defining the new format for the label of the Progress Bar.
Set the formatFunction property.
formatFunction
progressBar.formatFunction = function(value) { return "$" + value };
Get the formatFunction property.
let formatFunction = progressBar.formatFunction;
Sets progress bars maximum possible value.
Set the max property.
max
progressBar.max = 50;
Get the max property.
let max = progressBar.max;
Sets progress bars minimum possible value.
Set the min property.
min
progressBar.min = 10;
Get the min property.
let min = progressBar.min;
Sets the orientation of the progress bar Possible values: 'horizontal', 'vertical'.
Set the orientation property.
orientation
progressBar.orientation = 'vertical';
Get the orientation property.
let orientation = progressBar.orientation;
Enables/Disabled the label for the Progress Bar.
Set the showProgressValue property.
showProgressValue
progressBar.showProgressValue = false;
Get the showProgressValue property.
let showProgressValue = progressBar.showProgressValue;
Sets/Gets the value of the progress bar
Set the value property.
value
progressBar.value = 45;
Get the value property.
let value = progressBar.value;
This event is triggered when the value is changed.
Bind to the change event by type: jqxProgressBar
change
progressBar.addEventListener('change', function (event) { // event handling code goes here. }