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