Created
December 27, 2021 20:41
-
-
Save DavidPiper94/90ffc85479f85c7370418ec0ade9f8bb to your computer and use it in GitHub Desktop.
Example code for article about Audio Graphs - Putting all descriptors together
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
| // 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