Skip to content

Instantly share code, notes, and snippets.

@jan-ekholm
jan-ekholm / ContentView.swift
Created December 5, 2023 10:20
SwiftUI bar chart bug
import SwiftUI
import Charts
struct Value: Hashable {
let x: Int
let y: Int
}
struct ContentView: View {
let values: [Value]