Domain

public struct Domain : Encodable
  • x

    Sets the horizontal domain of this ternary subplot (in plot fraction).

    Declaration

    Swift

    public var x: InfoArray?
  • y

    Sets the vertical domain of this ternary subplot (in plot fraction).

    Declaration

    Swift

    public var y: InfoArray?
  • row

    If there is a layout grid, use the domain for this row in the grid for this ternary subplot .

    Declaration

    Swift

    public var row: Int?
  • If there is a layout grid, use the domain for this column in the grid for this ternary subplot .

    Declaration

    Swift

    public var column: Int?
  • Creates Domain object with specified properties.

    Declaration

    Swift

    public init(x: InfoArray? = nil, y: InfoArray? = nil, row: Int? = nil, column: Int? = nil)

    Parameters

    x

    Sets the horizontal domain of this ternary subplot (in plot fraction).

    y

    Sets the vertical domain of this ternary subplot (in plot fraction).

    row

    If there is a layout grid, use the domain for this row in the grid for this ternary subplot .

    column

    If there is a layout grid, use the domain for this column in the grid for this ternary subplot .