Created
December 27, 2021 20:41
-
-
Save DavidPiper94/dbca0cd73ea125b9804281588290a1a5 to your computer and use it in GitHub Desktop.
Example code for article about Audio Graphs - Describing the y axis
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
| private var yAxis: AXNumericDataAxisDescriptor { | |
| AXNumericDataAxisDescriptor( | |
| title: "The y axis", | |
| range: (0...9), | |
| gridlinePositions: [], | |
| valueDescriptionProvider: { (value: Double) -> String in | |
| "\(value)" | |
| } | |
| ) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment