Xceed Toolkit Plus for WPF v5.0 Documentation
Xceed.Wpf.Toolkit Assembly / Xceed.Wpf.Toolkit.Chart Namespace / DataPoint Class
Members Example


In This Topic
    DataPoint Class
    In This Topic
    Contains user-logic coordinates for every chart primitive.
    Syntax
    'Declaration
     
    <TypeDescriptionProviderAttribute(MS.Internal.ComponentModel.DependencyObjectProvider)>
    <NameScopePropertyAttribute("NameScope", System.Windows.NameScope)>
    Public Class DataPoint 
       Inherits System.Windows.DependencyObject
    'Usage
     
    Dim instance As DataPoint
    [TypeDescriptionProvider(MS.Internal.ComponentModel.DependencyObjectProvider)]
    [NameScopeProperty("NameScope", System.Windows.NameScope)]
    public class DataPoint : System.Windows.DependencyObject 
    Example
    The following sets up unbound data points in a column chart.
    <xctk:Chart>
      <xctk:Chart.Areas>
        <xctk:Area x:Name="_area1" Title="Area #1">
          <xctk:Area.Series>
            <xctk:Series x:Name="_series">
              <xctk:Series.Layout>
                <xctk:ColumnLayout />
              </xctk:Series.Layout>
              <xctk:Series.DataPoints>
                <xctk:DataPoint X="1" Y="1" Label="Oct" />
                <xctk:DataPoint X="2" Y="2" Label="Jan"/>
                <xctk:DataPoint X="2.5" Y="1.5" Label="Feb" />
                <xctk:DataPoint X="4" Y="1" Label="Jun"/>
                <xctk:DataPoint X="1.5" Y="3" Label="Dec"/>
                <xctk:DataPoint X="5" Y="5" Label="Apr"/>
                <xctk:DataPoint X="3" Y="1" Label="Nov"/>
                <xctk:DataPoint X="4.5" Y="7" Label="Jul"/>
                <xctk:DataPoint X="3.5" Y="4.5" Label="Aug"/>
              </xctk:Series.DataPoints>
            </xctk:Series>
          </xctk:Area.Series>
        </xctk:Area>
      </xctk:Chart.Areas>
    </xctk:Chart>
    Inheritance Hierarchy

    System.Object
       System.Windows.Threading.DispatcherObject
          System.Windows.DependencyObject
             Xceed.Wpf.Toolkit.Chart.DataPoint

    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also