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 SCIAxisTickLabelStyle class.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithAlignment:(SCIAlignment)alignment
                                   andMargins:(UIEdgeInsets)margins;

    Parameters

    margins

    The tick label margin.

  • Creates a new instance of SCIAxisTickLabelStyle class.

    Declaration

    Objective-C

    - (nonnull instancetype)initWithAlignment:(SCIAlignment)alignment
                                      margins:(UIEdgeInsets)margins
                             andRotationAngle:(float)angle;

    Parameters

    margins

    The tick label margin.

    angle

    The tick label rotation angle.

  • Tick label alignment.

    Declaration

    Objective-C

    @property (nonatomic, readonly) SCIAlignment alignment;
  • Tick label margins.

    Declaration

    Objective-C

    @property (nonatomic, readonly) UIEdgeInsets margins;
  • Tick label rotatioin angle in degrees.

    Declaration

    Objective-C

    @property (nonatomic, readonly) float rotationAngle;