JavaScript/jQuery ProgressBar - Progress Status

The progress status displays a numeric value indicating the made progress. Whether the progress status is visible or not depends on the showStatus property. To format the status string, use the statusFormat function. It should return a string value.

JavaScript
  • $(function(){
  • $("#progressBarContainer").dxProgressBar({
  • value: 40,
  • min: 0,
  • max: 100,
  • showStatus: true,
  • statusFormat: function(value) {
  • return value + " USD";
  • }
  • });
  • });
See Also