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
No CommentsBe the first to comment