Charts
Charts copied to clipboard
Percentage is not show on pie chart
Hi there,
Although although my last Charts version shown percentage, current Charts version didn't show. How can I fix it.
My code:
let pFormatter = NumberFormatter() pFormatter.numberStyle = .percent pFormatter.maximumFractionDigits = 1 pFormatter.multiplier = 1 pFormatter.percentSymbol = " %" data.setValueFormatter(DefaultValueFormatter(formatter: pFormatter))
this fixed the problem to me https://github.com/danielgindi/Charts/issues/4690#issuecomment-897744617