Class StackingColumn100Series
StackingColumn100Series resembles StackingColumnSeries, but the cumulative portion of each stacked element always totals to 100%.
Inheritance
System.Object
StackingColumn100Series
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.WPF.dll
Syntax
public class StackingColumn100Series : StackingColumnSeries, ICloneable, ISupportAxes2D, ISupportAxes, ISegmentSelectable, ISegmentSpacing
Examples
<syncfusion:StackingColumn100Series ItemsSource="{Binding Data}" XBindingPath="Year" YBindingPath="Value">
</syncfusion:StackingColumn100Series>
StackingColumn100Series series1 = new StackingColumn100Series();
series1.ItemsSource = viewmodel.Data;
series1.XBindingPath = "Year";
series1.YBindingPath = "Value";
chart.Series.Add(series1);
Constructors
StackingColumn100Series()
Declaration
public StackingColumn100Series()
Methods
CloneSeries(DependencyObject)
Returns the instance of StackingColumn100Series 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()