|
|
@@ -272,9 +272,9 @@ struct BolusStatsView: View {
|
|
|
AxisGridLine()
|
|
|
}
|
|
|
case .total:
|
|
|
- // Only show every other month
|
|
|
+ // Show start of every month
|
|
|
let day = Calendar.current.component(.day, from: date)
|
|
|
- if day == 1 && Calendar.current.component(.month, from: date) % 2 == 1 {
|
|
|
+ if day == 1 {
|
|
|
AxisValueLabel(format: StatChartUtils.dateFormat(for: selectedInterval), centered: true)
|
|
|
.font(.footnote)
|
|
|
AxisGridLine()
|