Add a Plus Sign to Indicator Value
The simple script below will allow you to add a plus sign to the primary Indicator Value:
widget.on('processresult', function(w, args) {
var data = args.result.value.data;
if(data > 0) {
args.result.value.text = '+' + args.result.value.text;
}
});
(Last Tested: v7.0.1.11006)
Please sign in to leave a comment.
Comments
1 comment