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;
}
});
Updated 03-02-2023
intapiuser
Admin
Joined December 15, 2022