Class StackingArea100Series
StackingArea100Series resembles StackingAreaSeries, but the cumulative portion of each stacked element always totals to 100%.
Inheritance
System.Object
StackingArea100Series
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class StackingArea100Series : StackingAreaSeries, ICloneable, ISupportAxes2D, ISupportAxes, ISegmentSelectable
Examples
<syncfusion:StackingArea100Series ItemsSource="{Binding Data}" XBindingPath="Year" YBindingPath="Value">
</syncfusion:StackingArea100Series>
StackingArea100Series series1 = new StackingArea100Series();
series1.ItemsSource = viewmodel.Data;
series1.XBindingPath = "Year";
series1.YBindingPath = "Value";
chart.Series.Add(series1);
Constructors
StackingArea100Series()
Declaration
public StackingArea100Series()
Methods
CloneSeries(DependencyObject)
Returns the instance of StackingArea100Series series.
Declaration
protected override DependencyObject CloneSeries(DependencyObject obj)
Parameters
Type | Name | Description |
---|---|---|
System.Windows.DependencyObject | obj | object |
Returns
Type |
---|
System.Windows.DependencyObject |
Overrides
CreateSegments()
Creates the segments of
Declaration
public override void CreateSegments()