Title

public struct Title : Encodable
extension Title: ExpressibleByStringLiteral
  • Sets the title of this axis.

    Note that before the existence of title.text, the title’s contents used to be defined as the title attribute itself. This behavior has been deprecated.

    Declaration

    Swift

    public var text: String?
  • Sets this axis’ title font.

    Note that the title’s font used to be customized by the now deprecated titlefont attribute.

    Declaration

    Swift

    public var font: Font?
  • Creates Title object with specified properties.

    Declaration

    Swift

    public init(text: String? = nil, font: Font? = nil)

    Parameters

    text

    Sets the title of this axis.

    font

    Sets this axis’ title font.

  • Declaration

    Swift

    public init(stringLiteral: String)