Class FunnelSeries
To render a funnel chart, create an instance of FunnelSeries class, and add it to Series collection property and set the required properties.
Inherited Members
Namespace: Syncfusion.SfChart.XForms
Assembly: Syncfusion.SfChart.XForms.dll
Syntax
public class FunnelSeries : TriangularSeries, IThemeElement
Remarks
FunnelSeries requires ItemsSource, XBindingPath and YBindingPath properties to be set to render the chart.
Examples
SfChart chart = new SfChart();
FunnelSeries series = new FunnelSeries();
ObservableCollection<ChartDataPoint> Data = new ObservableCollection<ChartDataPoint>
{
new ChartDataPoint("2006",28),
new ChartDataPoint("2007",68),
new ChartDataPoint("2010",38)
};
series.ItemsSource = Data;
chart.Series.Add(series);
Constructors
FunnelSeries()
Initializes a new instance of the FunnelSeries class.
Declaration
public FunnelSeries()
Fields
MinWidthProperty
Gets or sets the value that represents the width of the funnel bottom. This is a bindable property.
Declaration
public static readonly BindableProperty MinWidthProperty
Field Value
Type |
---|
Xamarin.Forms.BindableProperty |
Properties
MinWidth
Gets or sets the value that represents the width of the funnel bottom. This is a bindable property.
Declaration
public double MinWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Double | This property take the double value. |