Class PyramidSeries
Pyramid chart is similar to the funnel chart. It is often used for geographical purposes. The Pyramid Chart type displays the data which when totaled will be 100%. This type of chart is a single series chart representing the data as portions of 100%.
Inheritance
Inherited Members
Namespace: Syncfusion.UI.Xaml.Charts
Assembly: Syncfusion.SfChart.UWP.dll
Syntax
public class PyramidSeries : TriangularSeriesBase, ICloneable, ISegmentSelectable
Remarks
PyramidSeries does not have any axis. The segments in PyramidSeries can be explode to a certain distance from the center using
Examples
<syncfusion:PyramidSeries ItemsSource="{Binding Data}" XBindingPath="Year" YBindingPath="Value">
</syncfusion:PyramidSeries>
PyramidSeries series1 = new PyramidSeries();
series1.ItemsSource = viewmodel.Data;
series1.XBindingPath = "Year";
series1.YBindingPath = "Value";
chart.Series.Add(series1);
Constructors
PyramidSeries()
Called when instance created for PyramidSeries
Declaration
public PyramidSeries()
Fields
PyramidModeProperty
The DependencyProperty for PyramidMode property.
Declaration
public static readonly DependencyProperty PyramidModeProperty
Field Value
Type | Description |
---|---|
Windows.UI.Xaml.DependencyProperty |
Properties
PyramidMode
Gets or sets a value indicating whether the y value should interpret the length or surface of the pyramid block.
Declaration
public ChartPyramidMode PyramidMode { get; set; }
Property Value
Type | Description |
---|---|
ChartPyramidMode | Default value is Linear |
Methods
CloneSeries(DependencyObject)
Returns the instance of PyramidSeries series.
Declaration
protected override DependencyObject CloneSeries(DependencyObject obj)
Parameters
Type | Name | Description |
---|---|---|
Windows.UI.Xaml.DependencyObject | obj | object |
Returns
Type | Description |
---|---|
Windows.UI.Xaml.DependencyObject |
Overrides
CreateAdornment(AdornmentSeries, Double, Double, Double, Double)
Creates the adornment of PyramidSeries.
Declaration
protected override ChartAdornment CreateAdornment(AdornmentSeries series, double xVal, double yVal, double height, double currY)
Parameters
Type | Name | Description |
---|---|---|
AdornmentSeries | series | |
System.Double | xVal | |
System.Double | yVal | |
System.Double | height | |
System.Double | currY |
Returns
Type | Description |
---|---|
ChartAdornment |
Overrides
CreateSegment()
Creates an instance of series segment.
Declaration
protected override ChartSegment CreateSegment()
Returns
Type | Description |
---|---|
ChartSegment | Returns the instance of corresponding series segment. |
Overrides
Remarks
This customization is not supported for fast type series and technical indicators.
Examples
This sample shows how to call the CreateSegment() method to customize the line series segments.
public class LineSeriesExt : LineSeries
{
protected override ChartSegment CreateSegment()
{
return new LineSegmentExt();
}
}
public class LineSegmentExt : LineSegment
{
public override UIElement CreateVisual(Size size)
{
// Write your customization code here.
}
public override void Update(IChartTransformer transformer)
{
// Write your customization code here.
}
}
CreateSegments()
Creates the segment of PyramidSeries.
Declaration
public override void CreateSegments()
Overrides
CreateTransformer(Size, Boolean)
Return IChartTranform value based upon the given size.
Declaration
protected override IChartTransformer CreateTransformer(Size size, bool create)
Parameters
Type | Name | Description |
---|---|---|
Windows.Foundation.Size | size | |
System.Boolean | create |
Returns
Type | Description |
---|---|
Syncfusion.UI.Xaml.Charts.IChartTransformer |
Overrides
GetSurfaceHeight(Double, Double)
To get the SurfaceHeight for PyramidSeries.
Declaration
public static double GetSurfaceHeight(double y, double surface)
Parameters
Type | Name | Description |
---|---|---|
System.Double | y | |
System.Double | surface |
Returns
Type | Description |
---|---|
System.Double |
SetExplodeIndex(Int32)
Method implementation for ExplodeIndex.
Declaration
protected override void SetExplodeIndex(int i)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | i |