SurfacePointInfo
Class
An object that contains information about a data point in a surface series.
Definition
Namespace:Telerik.Windows.Controls.ChartView
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
C#
public class SurfacePointInfo
Inheritance: objectSurfacePointInfo
Constructors
Initializes a new instance of the SurfacePointInfo class.
C#
public SurfacePointInfo(SurfaceDataPoint3D associatedDataPoint, Point3D pointCenter, int? positionIndex)
The SurfaceDataPoint3D associated with the surface point info.
pointCenterPoint3DThe center of the data point layout slot.
positionIndexint?The index (of the data point) used in the triangle indexes collection that determines how the data points will be connected.
Fields
Gets the index position of the info. The index is used in the triangle indexes collection that determines how the data points will be connected.
C#
public readonly int? PositionIndex
Properties
Gets the associated data point.
C#
public SurfaceDataPoint3D AssociatedDataPoint { get; }
PointCenter
Point3D
Gets the center of the layout slot of the data point.
C#
public Point3D PointCenter { get; }