
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;
-
Gets the
minor ticks
.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIDoubleValues *_Nonnull minorTicks;
-
Gets the
major ticks culling priorities
which are used during culling of axis tick labels.Declaration
Objective-C
@property (nonatomic, strong, readonly) SCIIntegerValues *_Nonnull cullingPriorities;
-
Gets or sets the value indicating whether the first tick in
majorTicks
is even. This value is used for drawing major axis bandsDeclaration
Objective-C
@property (nonatomic) BOOL isFirstMajorTickEven;
Return Value
YES
- if first tick in inmajorTicks
is even. -
Checks whether the current
SCIAxisTicks
instance is empty.Declaration
Objective-C
@property (nonatomic, readonly) BOOL isEmpty;