Skip to content

Instantly share code, notes, and snippets.

@sturdysturge
Created June 21, 2022 10:38
Show Gist options
  • Select an option

  • Save sturdysturge/c6b78386af62ef34fe4522e630434bd8 to your computer and use it in GitHub Desktop.

Select an option

Save sturdysturge/c6b78386af62ef34fe4522e630434bd8 to your computer and use it in GitHub Desktop.
Chart(data) {
LineMark(
x: .value("Category", $0.category),
y: .value("Value", $0.value)
)
.foregroundStyle(.blue)
BarMark(
x: .value("Category", $0.category),
y: .value("Value", $0.value)
)
.opacity(0.8)
.foregroundStyle(.red)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment