menu

Xamarin.Forms

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class FunnelSeries - Xamarin.Forms API Reference | Syncfusion

    Show / Hide Table of Contents

    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.

    Inheritance
    System.Object
    ChartSeries
    AccumulationSeries
    TriangularSeries
    FunnelSeries
    Inherited Members
    AccumulationSeries.ExplodeAll
    AccumulationSeries.ExplodeAllProperty
    AccumulationSeries.ExplodeIndex
    AccumulationSeries.ExplodeIndexProperty
    AccumulationSeries.ExplodeOnTouch
    AccumulationSeries.ExplodeOnTouchProperty
    AccumulationSeries.GetChartDataPoints()
    AccumulationSeries.StrokeColor
    AccumulationSeries.StrokeColorProperty
    AccumulationSeries.YBindingPath
    AccumulationSeries.YBindingPathProperty
    ChartSeries.Animate()
    ChartSeries.AnimationDuration
    ChartSeries.AnimationDurationProperty
    ChartSeries.Color
    ChartSeries.ColorModel
    ChartSeries.ColorModelProperty
    ChartSeries.ColorProperty
    ChartSeries.DataMarker
    ChartSeries.DataMarkerLabelCreated
    ChartSeries.DataMarkerProperty
    ChartSeries.EnableAnimation
    ChartSeries.EnableAnimationProperty
    ChartSeries.EnableDataPointSelection
    ChartSeries.EnableDataPointSelectionProperty
    ChartSeries.EnableTooltip
    ChartSeries.EnableTooltipProperty
    ChartSeries.GetDataPointIndex(Single, Single)
    ChartSeries.IsSelected
    ChartSeries.IsVisible
    ChartSeries.IsVisibleOnLegend
    ChartSeries.IsVisibleOnLegendProperty
    ChartSeries.IsVisibleProperty
    ChartSeries.ItemsSource
    ChartSeries.ItemsSourceProperty
    ChartSeries.Label
    ChartSeries.LabelProperty
    ChartSeries.LegendIcon
    ChartSeries.LegendIconProperty
    ChartSeries.ListenPropertyChange
    ChartSeries.ListenPropertyChangeProperty
    ChartSeries.OnBindingContextChanged()
    ChartSeries.OnParentSet()
    ChartSeries.Opacity
    ChartSeries.OpacityProperty
    ChartSeries.ResumeNotification()
    ChartSeries.SelectedDataPointColor
    ChartSeries.SelectedDataPointColorProperty
    ChartSeries.SelectedDataPointIndex
    ChartSeries.SelectedDataPointIndexProperty
    ChartSeries.StrokeWidth
    ChartSeries.StrokeWidthProperty
    ChartSeries.SuspendNotification()
    ChartSeries.TooltipTemplate
    ChartSeries.TooltipTemplateProperty
    ChartSeries.XBindingPath
    ChartSeries.XBindingPathProperty
    TriangularSeries.ExplodeOffset
    TriangularSeries.ExplodeOffsetProperty
    TriangularSeries.GapRatio
    TriangularSeries.GapRatioProperty
    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.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved