Created
January 7, 2023 19:50
-
-
Save navsing/424d5083ba6fe21cc7a682ae55a0fa24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct chartData: Identifiable { | |
var id = 0 | |
var year: String | |
var awards: Double | |
} | |
//adding placeholderdata | |
var data: [chartData] = [ | |
chartData(year: "2000", awards: 100), | |
chartData(year: "2005", awards: 200), | |
chartData(year: "2010", awards: 600), | |
chartData(year: "2015", awards: 450), | |
chartData(year: "2020", awards: 50), | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment