
iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
SCIPieChartTooltipModifierBase
@interface SCIPieChartTooltipModifierBase
: SCIPieChartMasterSlaveTouchModifierBase
The SCIPieChartTooltipModifierBase
is part of the ChartModifier API, which factors out handling of Chart Label templates,
and provides a touch-over templated tooltip, provided by the output of the Hit-Test operation on a ISCIPieRenderableSeries
.
Note
Abstract base class for tooltip modifiers inSCIPieChartSurface
.
-
Defines whether the interaction should use interpolation.
Declaration
Objective-C
@property (nonatomic) BOOL useInterpolation;
-
Defines the
SCISourceMode
type of series on which interaction is performed.Declaration
Objective-C
@property (nonatomic) SCISourceMode sourceMode;
-
Defines a value indicating whether to show tooltip or not.
Declaration
Objective-C
@property (nonatomic) BOOL showTooltip;
-
Creates a new instance of
SCIPieChartTooltipModifierBase
class.Declaration
Objective-C
- (nonnull instancetype)initWithTooltipBehavior: (nonnull SCIPieChartTooltipBehaviorBase *)tooltipBehavior;
Parameters
tooltipBehavior
Pie tooltip behavior which will be associated with this modifier.