Fusionchart version in Pega v8.6.2 has no option to change the data value's color on Bar chart

Hi, I have 2 questions ~

Q1

I refer to this earlier post: Axis label color change in fusion reports | Support Center

but seems there is still no option to change the Data value color? It resolves to WHITE and is cannot be readable when the bars are adjusted to narrower. User wants the default at least BLACK instead.

Q2

Is there another way NOT to override the fusioncharts.js to achieve this? We prefer not to override the third-party file in the system as seen in this article: Chart control configuration - background and fonts | Support Center

@Jeremie

Add this CSS to achieve this:

.fusioncharts-container .fusioncharts-datalabels > text {
  fill: #000000;
}

@KingLam Thank you very much! It works as I expected and applied it to one of our Additional Style sheets in our Application skin.

This answered both my questions