IContourSeries
Hierarchy Properties Methods
Type Library
TeeChartx
Description
Follow this link for a visual representation of this Series type.
Similar to a Surface Series, Contour Series provides a layered Series display rather like an Isobar map. Layers may be displayed on the same or differing Y levels.
See Levels.Clicked method for use of Clicked with this Series type.
Example
'where Series(0) is a ContourSeries
levelndex = TChart1.Series(0).Clicked(X, Y) ' Get the contour point index.
If levelndex <> -1 Then
myText = Format(TChart1.Series(0).asContour.Levels.Items(levelndex).UpToValue, "0.0")