Class XyzDataSeries3D
Class implementation for XyzDataSeries3D
Inheritance
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public abstract class XyzDataSeries3D : XyDataSeries3D, ICloneable, ISupportAxes3D, ISupportAxes
Constructors
XyzDataSeries3D()
Initializes a new instance of the XyzDataSeries3D class.
Declaration
public XyzDataSeries3D()
Fields
ZBindingPathProperty
Declaration
public static readonly DependencyProperty ZBindingPathProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
ActualZAxis
Gets the actual z axis.
Declaration
protected ChartAxis ActualZAxis { get; }
Property Value
Type |
---|
ChartAxis |
ActualZValues
Gets or sets the sorted values, if the IsSortData is true.
Declaration
protected IEnumerable ActualZValues { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
IsIndexedZAxis
Gets a value indicating whether to treat z values as categories.
Declaration
protected bool IsIndexedZAxis { get; }
Property Value
Type |
---|
System.Boolean |
ZBindingPath
Gets or sets the binding path for z axis.
Declaration
public string ZBindingPath { get; set; }
Property Value
Type |
---|
System.String |
ZRange
Gets the z-axis range.
Declaration
public DoubleRange ZRange { get; }
Property Value
Type |
---|
DoubleRange |
ZValues
Gets or sets the x values in an unsorted order or in the order the data has been added to series.
Declaration
protected IEnumerable ZValues { get; set; }
Property Value
Type |
---|
System.Collections.IEnumerable |
Methods
GetZValues()
Gets the z values.
Declaration
protected List<double> GetZValues()
Returns
Type | Description |
---|---|
System.Collections.Generic.List<System.Double> | Returns the z values. |
OnBindingPathChanged(DependencyPropertyChangedEventArgs)
Updates the series on binding path changed.
Declaration
protected override void OnBindingPathChanged(DependencyPropertyChangedEventArgs args)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.DependencyPropertyChangedEventArgs | args | The Event Arguments |
Overrides
OnDataSourceChanged(IEnumerable, IEnumerable)
Updates the series on data source 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 |
Overrides
SetIndividualDataTablePoint(Int32, Object, Boolean)
Method implementation for Set points to given index for data table
Declaration
protected override void SetIndividualDataTablePoint(int index, object obj, bool replace)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The Index |
System.Object | obj | The Object |
System.Boolean | replace | The Replace Checker |
Overrides
SetIndividualPoint(Int32, Object, Boolean)
Method implementation for Set points to given index
Declaration
protected override void SetIndividualPoint(int index, object obj, bool replace)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The Index |
System.Object | obj | The Object |
System.Boolean | replace | Is Replace Required |