ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Pie Chart Value label color Hi zach_myt Thanks you. The anwer of 1) and 2) is yes. However, in developer tools I find that there's a permissions policy violation. It seems that it's the reason why the code is not working. I'll solve the problem above and try the code you provided. Thank you for your kindly help!! Re: Pie Chart Value label color Hi zach_myt Thank you for your help. I have tried the code you provide. However, it didn't work. The fontWeight was changed, yet the fontSize remained the same. My Code is like: widget.on('processresult', function(se, ev){ ev.result.plotOptions.series.dataLabels.style = {fontWeight:'bold'}; ev.result.plotOptions.pie.dataLabels.style.fontSize = '20px' }) I also tried this, but it didn't work either: widget.on('processresult', function(se, ev){ ev.result.plotOptions.series.dataLabels.style = {fontWeight:'bold'} }); widget.on('processresult', function(se, ev){ ev.result.plotOptions.pie.dataLabels.style.fontSize = '40px' }) Is there anything wrong in the script? Re: Pie Chart Value label color Hi harikm007 , I've used the code in this topic to change the font Weight successfully. Since I would like to change font weight and font size in the same code, so I used the code like below: widget.on('processresult', function(se, ev){ ev.result.plotOptions.series.dataLabels.style = {fontWeight:'bold'}; ev.result.plotOptions.series.dataLabels.style = {fontSize:'10px'} }) However, it didn't work. Can you kindly let me know how to fix it? Thank you! Howard Re: How to Customize Pie/Bar/Column/Area/Line Chart Data Labels Hi Liliia_DevX Thank you for your explanation. It's very helpful. Best regards, Howard Re: Modifying X Axis Labels Hi, I just saw your solution and it's very helpful. As for Step2, the code can change the color of X-axis Label. If I want to change its font size and font weight, how to adjust the code ? Thank you! Re: How do I format colors of bar chart by category(dimension)? Hi, Just want to expand this discussion. If the category is time-based data and can be change to Year/ Month/ Day etc. Is it still possible to change the bar color upon the category name? ( The raw data format like this 2018-11-06 00:00:00.000 UTC). Re: How to Customize Pie/Bar/Column/Area/Line Chart Data Labels Dear Sisense Team, Since I did not familiar about Java Script or HTML. Can you kindly explain what's the meaning of the following code and what can it do? element.options.plotOptions.series.dataLabels.style = !!style ? style : {} Thank you.