Hello, I am trying to format value (defined by Field="@nameof(HeatmapData.Value)" ) on a heatmap chart. The underlying Value is a double and I am trying to show it rounded to two decimal places ("0.##" format) with '%' appended. I've tried to use <ChartSeriesLabels Format="{0:0.##}%" />, but it prints value of the XField instead. Now I am trying <ChartSeriesLabels Template="#=value#%" />, but to my knowledge it doesn't support the "0.##" formatting option. Is there a way ho to do it?
Thank you.