xxxxxxxxxx
.chartXAxis(content: {
AxisMarks { value in
AxisValueLabel {
if let month = value.as(String.self) {
Text(month)
.rotationEffect(Angle(degrees: 60))
}
}
}
})