This is Version 13.0 Beta (22A5311f)
I see a crash in charts when I try to add more than one item to a Chart.
var body: some View {
Chart {
BarMark(
x: .value("Shape Type", data[0].type),
y: .value("Total Count", data[0].count)
)
BarMark(
x: .value("Shape Type", data[1].type),
y: .value("Total Count", data[1].count)
)
}
}
}
This doesn't crash with one item, which isn't a very useful chart. The crash is in the tuple code.
Charts17TupleChartContentVMn
_ Referenced from: /Users/eoinkortext/Library/Developer/Xcode/DerivedData/Chartest-cviqvlwnwkwzpncsusfuscqjflgt/Build/Products/Debug/Chartest.app/Contents/MacOS/Chartest_
I have logged this in FA already, just posting to see if it is well known, or I am on my own with this.