Skip to content

Instantly share code, notes, and snippets.

@DavidPiper94
Created December 27, 2021 20:41
Show Gist options
  • Select an option

  • Save DavidPiper94/90ffc85479f85c7370418ec0ade9f8bb to your computer and use it in GitHub Desktop.

Select an option

Save DavidPiper94/90ffc85479f85c7370418ec0ade9f8bb to your computer and use it in GitHub Desktop.
Example code for article about Audio Graphs - Putting all descriptors together
// 1
var accessibilityChartDescriptor: AXChartDescriptor? {
// 2
get {
AXChartDescriptor(
title: "Example Graph",
summary: "This graph shows example data.",
xAxis: xAxis,
yAxis: yAxis,
series: series
)
}
// 3
set { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment