Syncfusion Feedback

Trusted by the world’s leading companies

Syncfusion Trusted Companies

new layout

Why Choose Syncfusion WINUI Funnel Charts?

The WinUI Funnel Chart control is optimized to visualize large quantities of data in an elegant way. Its rich feature set includes functionalities like data binding, legends, data labels, explode, tooltips, gradients, and selection.

WINUI Funnel chart types icon

Funnel Chart

This Chart includes popular and widely used funnel charts.

WINUI chart features icon

Rich feature set

A vast range of features is available to customize the appearance of charts and render the desired outputs.

WINUI chart globalization icon

Globalization

Enables users from different locales to use Charts by formatting dates, currencies, and numbering to suit their preferences.

WINUI chart responsive icon

Responsiveness

Charts in WINUI render adaptively based on device type like Windows desktops and device orientation, providing an optimal user experience.


User interactions

The end-user experience is greatly enhanced by interactive features such as tooltip and explode.

Tooltip

Tooltips display a pop-up with additional information when the mouse hovers over a data point.

WinUI Funnel Chart with tooltip

Explode

Interactively explodes a part of a funnel chart. This is used to draw the attention of users to a specific area.

WinUI Funnel Chart with explode segment


Other exciting and highly usable features

From a vast collection of features available in WinUI Funnel Chart, a few are described here.

Legend

Legends provide additional information helpful in identifying individual data points in a WinUI Funnel Chart.

WinUI Funnel Chart with legend icon

Data labels

Annotate data points with data labels to improve the readability of a chart.

WinUI funnel chart with labels

Segment spacing

The gap between each segment in the WinUI funnel chart can be set using the GapRatio property.

WinUI Funnel Chart with segment spacing

Neck width

The neck width of a funnel chart can be customized easily. Changing the minimum width of the neck to zero will make the funnel chart look like an inverted pyramid chart.

WinUI Funnel Chart with neck width


Code Guideline

Easily get started with the WinUI Charts using a few simple lines of XAML and C# code as demonstrated below. Also explore our WinUI Charts example which shows you how to render and configure the Charts control in WinUI.

  1. <Window x:Class="ChartExample.MainPage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="using:ChartExample"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  7. xmlns:chart="using:Syncfusion.UI.Xaml.Charts"
  8. mc:Ignorable="d"
  9. Title="WinUI Column Chart" Height="450" Width="700">
  10. <!--Setting DataContext-->
  11. <Grid>
  12. <chart:SfFunnelChart Height="300" Width="500"
  13. ItemsSource="{Binding Data}"
  14. XBindingPath="Month"
  15. YBindingPath="Target">
  16. <!--Setting DataContext-->
  17. <chart:SfFunnelChart.DataContext>
  18. <local:ViewModel/>
  19. </chart:SfFunnelChart.DataContext>
  20. </chart:SfFunnelChart>
  21. </Grid>
  22. </Window>
  1. public class Model
  2. {
  3. public string Month { get; set; }
  4.  
  5. public double Target { get; set; }
  6.  
  7. public Model(string xValue, double yValue)
  8. {
  9. Month = xValue;
  10. Target = yValue;
  11. }
  12. }
  13.  
  14. public class ViewModel
  15. {
  16. public ObservableCollection<Model> Data { get; set; }
  17.  
  18. public ViewModel()
  19. {
  20. Data = new ObservableCollection<Model>()
  21. {
  22. new Model("Jan", 50),
  23. new Model("Feb", 70),
  24. new Model("Mar", 65),
  25. new Model("Apr", 57),
  26. new Model("May", 48),
  27. };
  28. }
  29. }

Syncfusion WinUI DataViz & UI Controls

Frequently Asked Questions

  • Support for 1 chart type with elegant animation.
  • Enhance user experience with a set of interactive features.
  • Easily create and customize charts with shared and intuitive APIs.
  • One of the best WinUI Charts in the market that offers feature-rich UI to interact with the software.
  • Visualize large quantities of data, flexible data binding, and user customization.
  • Work with a simple configuration and API.
  • Use a lightweight and truly native control.
  • Adaptive and responsive UI.
  • Support for all modern devices and browsers.
  • Access expansive resources such as demos, and documentation to learn and get started quickly with WinUI Charts.

You can find our WinUI Charts demo here.

No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue, 5 or fewer developers, and 10 or fewer total employees.

A good place to start would be our comprehensive getting started documentation.

Our Customers Love Us

Having an excellent set of tools and a great support team, Syncfusion® reduces customers’ development time.
Here are some of their experiences.

Rated by users across the globe

Syncfusion WinUI Funnel Charts Resources

Awards

Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion® is proud to hold the following industry awards.

Up arrow icon
Chat with us