Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save DavidPiper94/dbca0cd73ea125b9804281588290a1a5 to your computer and use it in GitHub Desktop.
Example code for article about Audio Graphs - Describing the y axis
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