Knowledge Base Article

Change The Color Of Values On Pie Chart Slices

In order to change the color of the values on the pie chart slices one can use the following widget code :
widget.on('ready', function(se,ev){
    var color = 'red';
    $('.pie-percent-label tspan').css('fill',color)
})
Example:
Updated 03-02-2023
Comments have been turned off for this article