Class DataPointCollection
Represents a DataPointCollection class implementation.
Inheritance
System.Object
DataPointCollection
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class DataPointCollection : Object
Constructors
DataPointCollection()
Initializes a new instance of the DataPointCollection class.
Declaration
public DataPointCollection()
Properties
XValues
Gets or sets the x value of the data point collection.
Declaration
public List<double> XValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Double> |
YValues
Gets or sets the y value of the data point collection.
Declaration
public List<double> YValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Double> |
ZValues
Gets or sets the z value of the data point calculation.
Declaration
public List<double> ZValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.Double> |
Methods
AddPoints(Double, Double, Double)
Method used to add point value to the data point collection.
Declaration
public void AddPoints(double x, double y, double z)
Parameters
Type | Name | Description |
---|---|---|
System.Double | x | The x value. |
System.Double | y | The y value. |
System.Double | z | The z value. |