Topline

public enum Topline : Hashable

Where to end drawing the chart.

case maximumValue // Highest value in the data set(s)
case maximum(of: Double) // Set a custom topline
  • Highest value in the data set(s)

    Declaration

    Swift

    case maximumValue
  • Set a custom topline

    Declaration

    Swift

    case maximum(of: Double)