menu

WinForms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class DataPointCollection - WindowsForms API Reference | Syncfusion

    Show / Hide Table of Contents

    Class DataPointCollection

    Represents a DataPointCollection class implementation.

    Inheritance
    System.Object
    DataPointCollection
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Syncfusion.UI.Xaml.Charts
    Assembly: Syncfusion.SfChart.WPF.dll
    Syntax
    public class DataPointCollection

    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved