Class StackingSeriesBase3D
Class implementation for StackingSeriesBase3D
Inheritance
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public abstract class StackingSeriesBase3D : XyzDataSeries3D, ICloneable, ISupportAxes3D, ISupportAxes
Constructors
StackingSeriesBase3D()
Declaration
protected StackingSeriesBase3D()
Fields
GroupingLabelProperty
The DependencyProperty for GroupingLabel property.
Declaration
public static readonly DependencyProperty GroupingLabelProperty
Field Value
Type |
---|
System.Windows.DependencyProperty |
Properties
GroupingLabel
Gets or sets the label to categorize the stacking series as a single unit.
Declaration
public string GroupingLabel { get; set; }
Property Value
Type |
---|
System.String |
Remarks
We can group one or more series into a single group by specifying this property. The series coming under same group will stack with other series in group.
YRangeEndValues
Gets or sets the ending y values collection.
Declaration
protected IList<double> YRangeEndValues { get; set; }
Property Value
Type |
---|
System.Collections.Generic.IList<System.Double> |
YRangeStartValues
Gets or sets the starting y values collection.
Declaration
protected IList<double> YRangeStartValues { 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 chart. |
Overrides
FindNearestChartPoint(Point, out Double, out Double, out Double)
Finds the nearest point in ChartSeries relative to the mouse point/touch position.
Declaration
public override void FindNearestChartPoint(Point point, out double x, out double y, out double stackedYValue)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.Point | point | The co-ordinate point representing the current mouse point /touch position. |
System.Double | x | x-value of the nearest point. |
System.Double | y | y-value of the nearest point. |
System.Double | stackedYValue | The Stacked Y Value. |
Overrides
GetCumulativeStackValues(ChartSeriesBase)
Returns the stacked value of the series.
Declaration
public StackingValues GetCumulativeStackValues(ChartSeriesBase series)
Parameters
Type | Name | Description |
---|---|---|
ChartSeriesBase | series | The ChartSeries |
Returns
Type | Description |
---|---|
StackingValues | StackedYValues class instance. |
GetStackedYValue(Int32)
Return double value from the given index.
Declaration
protected double GetStackedYValue(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The Index |
Returns
Type | Description |
---|---|
System.Double | Returns the stacked y values. |