Step

public struct Step : Encodable

Undocumented

  • Sets the background color of the arc.

    Declaration

    Swift

    public var color: Color?
  • Undocumented

    Declaration

    Swift

    public var line: Line?
  • Sets the thickness of the bar as a fraction of the total thickness of the gauge.

    Declaration

    Swift

    public var thickness: Double?
  • Sets the range of this axis.

    Declaration

    Swift

    public var range: InfoArray?
  • When used in a template, named items are created in the output figure in addition to any items the figure already has in this array.

    You can modify these items in the output figure by making your own item with templateitemname matching this name alongside your modifications (including visible: false or enabled: false to hide it). Has no effect outside of a template.

    Declaration

    Swift

    public var name: String?
  • Used to refer to a named item in this array in the template.

    Named items from the template will be created even without a matching item in the input figure, but you can modify one by making an item with templateitemname matching its name, alongside your modifications (including visible: false or enabled: false to hide it). If there is no template or no matching item, this item will be hidden unless you explicitly show it with visible: true.

    Declaration

    Swift

    public var templateItemName: String?
  • Creates Step object with specified properties.

    Declaration

    Swift

    public init(color: Color? = nil, line: Line? = nil, thickness: Double? = nil, range: InfoArray?
            = nil, name: String? = nil, templateItemName: String? = nil)

    Parameters

    color

    Sets the background color of the arc.

    line

    thickness

    Sets the thickness of the bar as a fraction of the total thickness of the gauge.

    range

    Sets the range of this axis.

    name

    When used in a template, named items are created in the output figure in addition to any items the figure already has in this array.

    templateItemName

    Used to refer to a named item in this array in the template.