Forum Discussion

rahuldhomane's avatar
02-23-2022
Solved

Pie Chart Value label color

Hi , Is there a way to change the color of value labels in a pie chart?  Thanks
  • harikm007's avatar
    harikm007
    02-24-2022

    rahuldhomane ,

    Previous script is to change color of outer labels (I thought requirement is to change color of labels outside piechart). 

    If you are trying to change colors of labels inside piechart (in your screenshot 43%, 40%, 12%, 5%), try this script:

     

    widget.on('domready', function(se, ev){
    	$('piechart .pie-percent-label').css('fill', 'green')
    })
    

     

    Result will looks like: 

     

    -Hari