InfoBoxPlacement

public enum InfoBoxPlacement

Placement of the data point information panel when touch overlay modifier is applied.

case floating // Follows input across the chart.
case infoBox(isStatic: Bool)  // Display in the InfoBox. Must have .infoBox()
case header // Fix in the Header box. Must have .headerBox().
  • Follows input across the chart.

    Declaration

    Swift

    case floating
  • Display in the InfoBox. Must have .infoBox()

    Declaration

    Swift

    case infoBox(isStatic: Bool = false)
  • Display in the Header box. Must have .headerBox().

    Declaration

    Swift

    case header