
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIAxisInfoProvider
@protocol ISCIAxisInfoProvider <ISCIAttachable>
Defines the interface which creates SCIAxisInfo
and tooltips based on SCIAxisInfo
values.
-
Creates new instance of
SCIAxisInfo
for assicoated axis.Declaration
Objective-C
@property (nonatomic, readonly) SCIAxisInfo *_Nonnull axisInfo;
-
Creates new instance of
ISCIAxisTooltip
for further placement on assicoated axis.Declaration
Objective-C
@property (nonatomic, readonly) id<ISCIAxisTooltip> _Nonnull axisTooltip;
-
Creates
ISCIAxisTooltip
instance for specifiedtooltipId
which is attached to current assicoatedISCIAxis
.Declaration
Objective-C
- (nonnull id<ISCIAxisTooltip>)getAxisTooltipForModifierType: (nonnull Class)modifierType;
Parameters
modifierType
The type of modifier for which tooltip will be created.
Return Value
The
ISCIAxisTooltip
instance which is attached to assicoated Axis.