iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIAxisTicks
@interface SCIAxisTicks : NSObject <ISCICleanable>
A class which contains axis ticks.
Note
Used internally when drawing tick marks and grid lines.-
Gets the
major ticks.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIDoubleValues *_Nonnull majorTicks;Swift
var majorTicks: SCIDoubleValues { get } -
Gets the
minor ticks.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIDoubleValues *_Nonnull minorTicks;Swift
var minorTicks: SCIDoubleValues { get } -
Gets the
major ticks culling prioritieswhich are used during culling of axis tick labels.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIIntegerValues *_Nonnull cullingPriorities;Swift
var cullingPriorities: SCIIntegerValues { get } -
Gets or sets the value indicating whether the first tick in
majorTicksis even. This value is used for drawing major axis bandsDeclaration
Objective-C
@property (nonatomic) BOOL isFirstMajorTickEven;Swift
var isFirstMajorTickEven: Bool { get set }Return Value
YES- if first tick in inmajorTicksis even. -
Checks whether the current
SCIAxisTicksinstance is empty.Declaration
Objective-C
@property (nonatomic, readonly) BOOL isEmpty;Swift
var isEmpty: Bool { get }
View on GitHub