iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIAxisTickLabelStyle
@interface SCIAxisTickLabelStyle : NSObject
Defines a class with style for each tick label rendered by SCIAxisBase.
-
Creates a new instance of
SCIAxisTickLabelStyleclass.Declaration
Objective-C
- (nonnull instancetype)initWithAlignment:(SCIAlignment)alignment andMargins:(UIEdgeInsets)margins;Swift
convenience init(alignment: SCIAlignment, andMargins margins: UIEdgeInsets)Parameters
marginsThe tick label margin.
-
Creates a new instance of
SCIAxisTickLabelStyleclass.Declaration
Objective-C
- (nonnull instancetype)initWithAlignment:(SCIAlignment)alignment margins:(UIEdgeInsets)margins andRotationAngle:(float)angle;Swift
init(alignment: SCIAlignment, margins: UIEdgeInsets, andRotationAngle angle: Float)Parameters
marginsThe tick label margin.
angleThe tick label rotation angle.
-
Tick label alignment.
Declaration
Objective-C
@property (nonatomic, readonly) SCIAlignment alignment;Swift
var alignment: SCIAlignment { get } -
Tick label margins.
Declaration
Objective-C
@property (nonatomic, readonly) UIEdgeInsets margins;Swift
var margins: UIEdgeInsets { get } -
Tick label rotatioin angle in degrees.
Declaration
Objective-C
@property (nonatomic, readonly) float rotationAngle;Swift
var rotationAngle: Float { get }
View on GitHub