Hi
I set the label font size to 25, but it seems that it was not applied correctly. The labels of the two gauge have different font sizes, same code and same data.
labels={{
valueLabel: {
style: {fontSize: 25},
formatTextValue: value => {
if(!data || value == -Infinity) return "N/A";
return `${formatNumberTwoDigits.format(value)}`;
}
}
}}

Hi
I set the label font size to 25, but it seems that it was not applied correctly. The labels of the two gauge have different font sizes, same code and same data.