Title
public struct Title : Encodable
Undocumented
-
Sets the title of this axis.
Note that before the existence of
title.text
, the title’s contents used to be defined as thetitle
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 set by the now deprecated
titlefont
attribute.Declaration
Swift
public var font: Font?
-
An additional amount by which to offset the title from the tick labels, given in pixels.
Note that this used to be set by the now deprecated
titleoffset
attribute.Declaration
Swift
public var offset: Double?
-
Creates
Title
object with specified properties.Declaration
Swift
public init(text: String? = nil, font: Font? = nil, offset: Double? = nil)
Parameters
text
Sets the title of this axis.
font
Sets this axis’ title font.
offset
An additional amount by which to offset the title from the tick labels, given in pixels.