[Solved] How do I display dates along X axis using Charts in SwiftUI?
It works fine with me, might me something in the model data code? Here is my working example: struct Exercise: Identifiable { let id = UUID() var dateCompleted: Date var reps: Int } struct ContentView: View { private var exerciseMaxRepsArray: [Exercise] = [] init() { // init dummy data for i in 0 ..< 10 … Read more