Class XyDataSeries3D
Class implementation for XyDataSeries3D
Inheritance
System.Object
XyDataSeries3D
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public abstract class XyDataSeries3D : CartesianSeries3D, ICloneable, ISupportAxes3D, ISupportAxes
Constructors
XyDataSeries3D()
Initializes a new instance of the XyDataSeries3D class.
Declaration
protected XyDataSeries3D()
Fields
YBindingPathProperty
The DependencyProperty for YBindingPath property.
Declaration
public static readonly DependencyProperty YBindingPathProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
YBindingPath
Gets or sets the binding path for y axis.
Declaration
public string YBindingPath { get; set; }
Property Value
Type |
---|
System.String |
YValues
Gets or sets YValues
Declaration
protected IList<double> YValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<System.Double> |
Methods
CloneSeries(DependencyObject)
Clones the series.
Declaration
protected override DependencyObject CloneSeries(DependencyObject obj)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.DependencyObject | obj | The Object |
Returns
Type | Description |
---|---|
System.Windows.DependencyObject | Returns the cloned series. |
Overrides
GeneratePoints()
Method for Generate Points for XYDataSeries.
Declaration
protected override void GeneratePoints()
Overrides
GetPointToValue(ChartAxis, Point)
Method used to get the chart data at an given point
Declaration
public double GetPointToValue(ChartAxis axis, Point point)
Parameters
Type | Name | Description |
---|---|---|
ChartAxis | axis | The Axis |
System.Windows.Point | point | The Point |
Returns
Type | Description |
---|---|
System.Double | The point to value. |
OnBindingPathChanged(DependencyPropertyChangedEventArgs)
Raises the
Declaration
protected override void OnBindingPathChanged(DependencyPropertyChangedEventArgs args)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.DependencyPropertyChangedEventArgs | args | The Event Arguments. |
Overrides
OnDataSourceChanged(IEnumerable, IEnumerable)
Called when DataSource property changed
Declaration
protected override void OnDataSourceChanged(IEnumerable oldValue, IEnumerable newValue)
Parameters
Type | Name | Description |
---|---|---|
System.Collections.IEnumerable | oldValue | The Old Value |
System.Collections.IEnumerable | newValue | The New Value |