New to Telerik UI for WPFStart a free 30-day trial

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)
Parameters:associatedDataPointSurfaceDataPoint3D

The SurfaceDataPoint3D associated with the surface point info.

pointCenterPoint3D

The 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; }

Gets the center of the layout slot of the data point.

C#
public Point3D PointCenter { get; }