Post

Replies

Boosts

Views

Activity

Reply to How do I remove the background lines of a chart
You can also set the Visibility directly: Chart{     BarMark(x: .value("o", 5),             y: .value("m", "Duration: 5m"),             width: 7)         .foregroundStyle(.orange)          BarMark(x: .value("o", 7),             y: .value("m", "Intervals: 7"),             width: 7)         .foregroundStyle(.teal) } .chartYAxis(.hidden) .chartXAxis(.hidden)
Oct ’22