ChartAxisAttributes
public class ChartAxisAttributes : ObservableObject, Identifiable, NSCopying, CustomStringConvertible
extension ChartAxisAttributes: Equatable
Undocumented
-
Provides an identifier that associates the axis with a position and orientation in the chart.
Declaration
Swift
@Published public var axisId: ChartAxisId? { get set }
-
Properties for the axis baseline, which is typically usually 0.
- Only numeric axes have a baseline.
Declaration
Swift
@Published public var baseline: ChartBaselineAttributes { get set }
-
Properties for the axis gridlines.
Declaration
Swift
@Published public var gridlines: ChartGridlineAttributes { get set }
-
Properties for the axis gridline labels.
Declaration
Swift
@Published public var labels: ChartLabelAttributes { get set }
-
Properties of the axis title label.
Declaration
Swift
@Published public var titleLabel: ChartLabelAttributes { get set }
-
Title of the axis.
Declaration
Swift
@Published public var title: String? { get set }
-
Declaration
Swift
public let id: UUID
-
Undocumented
Declaration
Swift
public init(axisId: ChartAxisId? = nil, baseline: ChartBaselineAttributes? = nil, gridlines: ChartGridlineAttributes? = nil, labels: ChartLabelAttributes? = nil, titleLabel: ChartLabelAttributes? = nil, title: String? = nil)
-
Undocumented
Declaration
Swift
public func copy(with zone: NSZone? = nil) -> Any
-
Declaration
Swift
public var description: String { get }
-
Declaration
Swift
public static func == (lhs: ChartAxisAttributes, rhs: ChartAxisAttributes) -> Bool