Forum Discussion
Sijo1995
10-14-2022Cloud Apps
Hi Risa_Brown ,
Please use this script
widget.on("ready", function (se, args){
$('.pie-percent-label').each(function(i, obj){var Valuetext=$(this).text();
var matches = Valuetext.match(/(\d+)/); if (matches) {
var newValue=parseFloat(Valuetext)
var value=newValue.toFixed(0);
$(this).text(value+'%');
}
})
});
- denizakb04-19-2024Data Storage
Where should we add this I'm wondering? Thank you!