Class SurfacePointInfo
An object that contains information about a data point in a surface series.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.ChartView
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class SurfacePointInfo
Constructors
SurfacePointInfo(SurfaceDataPoint3D, Point3D, Nullable<Int32>)
Initializes a new instance of the SurfacePointInfo class.
Declaration
public SurfacePointInfo(SurfaceDataPoint3D associatedDataPoint, Point3D pointCenter, int? positionIndex)
Parameters
SurfaceDataPoint3D
associatedDataPoint
The SurfaceDataPoint3D associated with the surface point info. |
System.Windows.Media.Media3D.Point3D
pointCenter
The center of the data point layout slot. |
System.Nullable<System.Int32>
positionIndex
The index (of the data point) used in the triangle indexes collection that determines how the data points will be connected. |
Fields
PositionIndex
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.
Declaration
public readonly int? PositionIndex
Field Value
System.Nullable<System.Int32>
|
Properties
AssociatedDataPoint
Gets the associated data point.
Declaration
public SurfaceDataPoint3D AssociatedDataPoint { get; }
Property Value
SurfaceDataPoint3D
|
PointCenter
Gets the center of the layout slot of the data point.
Declaration
public Point3D PointCenter { get; }
Property Value
System.Windows.Media.Media3D.Point3D
|