rahuldhomane
02-23-2022ETL
Pie Chart Value label color
Hi ,
Is there a way to change the color of value labels in a pie chart?
Thanks
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