Wijmo UI for the Web
labelFormatString Option
wijmo.progressbar.wijprogressbar Namespace > options type : labelFormatString Option

Default value: '{1}%'

Sets the format of the label text.

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  string
    returnsValue = $(".selector").wijprogressbar("option", "labelFormatString");
    
    // Set value
    var newValue; // Type:  string
    $(".selector").wijprogressbar("option", "labelFormatString", newValue);
        
});
var labelFormatString : string;
Remarks
The available formats are as follows: {0} or {ProgressValue} express the current progress Value. {1} or {PercentProgress} express the current percent of the progress bar. {2} or {RemainingProgress} express the remaining progress of the progress bar. {3} or {PercentageRemaining} express the remaining percent of the progress bar. {4} or {Min} express the min Vlaue of the progress bar. {5} or {Max} express the max Value of the progress bar.
See Also

Reference

options type
wijprogressbar jQuery Widget