iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
ISCIPieSeriesInfoProvider
@protocol ISCIPieSeriesInfoProvider <ISCIAttachable>
Defines the interface which creates SCIPieSeriesInfo and tooltips based on SCISeriesInfo values.
-
Creates
SCISeriesInfoinstance which is attached to currentISCIRenderableSeries.Declaration
Objective-C
@property (nonatomic, readonly) SCIPieSeriesInfo *_Nonnull seriesInfo;Swift
var seriesInfo: SCIPieSeriesInfo { get } -
Creates
ISCISeriesTooltipinstance which is attached to currentISCIRenderableSeries.Declaration
Objective-C
@property (nonatomic, readonly) id<ISCIPieSeriesTooltip> _Nonnull seriesTooltip;Swift
var seriesTooltip: any ISCIPieSeriesTooltip { get } -
Creates
ISCISeriesTooltipinstance for specifiedtooltipIdwhich is attached to currentISCIRenderableSeries.Declaration
Objective-C
- (nonnull id<ISCIPieSeriesTooltip>)getSeriesTooltip: (nonnull Class)modifierType;Swift
func getSeriesTooltip(_ modifierType: AnyClass) -> any ISCIPieSeriesTooltipParameters
modifierTypeThe type of modifier for which tooltip will be created.
Return Value
Tooltip instance.
View on GitHub