iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCITooltipModifierWithAxisLabelsBase
@interface SCITooltipModifierWithAxisLabelsBase : SCITooltipModifierBase
The SCITooltipModifierWithAxisLabelsBase provides the same functionality as SCITooltipBehaviorBase plus it provides axis labels for all associated axes.
Warning
Designed to be an abstract class, hence should be used for inheritance only. No direct initializations.-
Defines a value which indicate whether show labels on axes or not.
Declaration
Objective-C
@property (nonatomic) BOOL showAxisLabel;Swift
var showAxisLabel: Bool { get set } -
Creates a new instance of
SCITooltipModifierWithAxisLabelsBaseclass.Declaration
Objective-C
- (nonnull instancetype) initWithTooltipBehavior:(nonnull SCITooltipBehaviorBase *)tooltipBehavior andAxisTooltipsBehavior: (nonnull SCIAxisTooltipsBehaviorBase *)axisTooltipsBehavior;Swift
init(tooltipBehavior: SCITooltipBehaviorBase<any ISCIChartModifier>, andAxisTooltipsBehavior axisTooltipsBehavior: SCIAxisTooltipsBehaviorBase)Parameters
tooltipBehaviorThe
SCITooltipBehaviorwhich will be associated with this modifier.axisTooltipsBehaviorThe
SCIAxisTooltipsBehaviorBasewhich will be associated with this modifier.
View on GitHub