diff --git a/Sources/SwiftUICharts/Charts/PieChart/PieChartCell.swift b/Sources/SwiftUICharts/Charts/PieChart/PieChartCell.swift index f733bcd7..197ba0ae 100644 --- a/Sources/SwiftUICharts/Charts/PieChart/PieChartCell.swift +++ b/Sources/SwiftUICharts/Charts/PieChart/PieChartCell.swift @@ -47,7 +47,7 @@ public struct PieChartCell: View { path .fill(self.accentColor.linearGradient(from: .bottom, to: .top)) .overlay(path.stroke(self.backgroundColor, lineWidth: (startDeg == 0 && endDeg == 0 ? 0 : 2))) - .scaleEffect(self.show ? 1 : 0) + .scaleEffect(self.show ? 1 : 0.01) .animation(Animation.spring().delay(Double(self.index) * 0.04)) .onAppear { self.show = true