10 Features of WinUI Circular Charts That Make It Appealing
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (174).NET Core  (29).NET MAUI  (207)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (217)BoldSign  (14)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (66)Flutter  (133)JavaScript  (221)Microsoft  (119)PDF  (81)Python  (1)React  (100)Streamlit  (1)Succinctly series  (131)Syncfusion  (917)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (68)WPF  (159)Xamarin  (161)XlsIO  (36)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (148)Chart  (131)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (629)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (40)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (507)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (10)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (387)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (593)What's new  (332)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
10 Features of WinUI Circular Charts That Makes It More Appealing

10 Features of WinUI Circular Charts That Make It Appealing

When it comes to data analysis and presentation, nothing beats a good chart. Charts visualize complex data in an easily understandable way. The Syncfusion WinUI Charts control provides over 20 popular and widely used chart types, like line, column, area, and circular. Its rich feature set includes data binding, multiple axes, legends, animations, data labels, tooltip, gradient, zooming, and so on.

First, let’s do a quick overview of our WinUI circular charts.

WinUI circular charts

The WinUI circular charts are user-friendly chart types that provide better UI visualization of data. These charts are classified into two types: pie charts and doughnut charts (also spelled donut).

Pie chart

The WinUI pie chart displays the proportions and percentages of different categories.

WinUI Pie Chart
WinUI Pie Chart

To render a pie chart, create an instance of the PieSeries and add it to the series collection property of the SfCircularChart.

Refer to the following XAML code.

<chart:SfCircularChart>
      <chart:SfCircularChart.Series>
          <chart:PieSeries ItemsSource="{Binding Data}" XBindingPath="Category" 
                           YBindingPath="Value"/>
      </chart:SfCircularChart.Series>
</chart:SfCircularChart>

Doughnut chart

The WinUI doughnut chart is similar to the pie chart, but with an open space at the center. It is intended for comparing the contribution of each data point to the whole.

WinUI Doughnut Chart
WinUI Doughnut Chart

To render a doughnut chart, create an instance of the DoughnutSeries and add it to the Series collection property of the SfCircularChart. Refer to the following XAML code.

<chart:SfCircularChart>
    <chart:SfCircularChart.Series>
        <chart:DoughnutSeries ItemsSource="{Binding Data}" 
                              XBindingPath="Product" 
                              YBindingPath="SalesRate" />
    </chart:SfCircularChart.Series>
</chart:SfCircularChart>

Now, let’s explore the top 10 features of these WinUI circular charts:

  1. Legend
  2. Multilevel chart
  3. Semicircular chart
  4. Exploded segments
  5. Grouping small data points into others category
  6. Smart data label
  7. Tooltip
  8. Selection
  9. Animation
  10. UI styling

1. Legend

A legend provides additional information that helps us to identify the individual slices in a circular chart.

It supports the following options:

  • Placement of legend on top, left, right, bottom, and inside the chart area.
  • Vertical or horizontal orientation.
  • Auto-creation of legend UI and binding to the underlying data model.
  • APIs to customize the default UI appearance.
  • Templating of legend items.

You can define legends in your WinUI Charts using the following code example.

<chart:SfCircularChart>
   <chart:SfCircularChart.Legend>
       <chart:ChartLegend />                              
   </chart:SfCircularChart.Legend>
</chart:SfChart>
Legends in WinUI Pie Chart
Legends in WinUI Pie Chart

2. Multilevel circular chart

A multilevel circular chart allows users to add multiple series in a single chart. Usually, the donut chart has different categories of data slices. A multilevel donut chart is used to compare the distribution of category values.

Refer to the following XAML code example.

<chart:SfCircularChart>
      <chart:SfCircularChart.Series>
          <chart:DoughnutSeries ItemsSource="{Binding Data}" XBindingPath="Category" 
                                YBindingPath="Value1"/>
          <chart:DoughnutSeries ItemsSource="{Binding Data}" XBindingPath="Category" 
                                YBindingPath="Value2"/>
          <chart:DoughnutSeries ItemsSource="{Binding Data}" XBindingPath="Category" 
                                YBindingPath="Value2"/>
      </chart:SfCircularChart.Series>
</chart:SfCircularChart >
WinUI Multilevel Donut Chart
WinUI Multilevel Donut Chart

3. Semicircular chart

The main advantage of the semicircle chart is that it takes up half the space of a regular circular chart for the same amount of data displayed. The semi-doughnut chart is also known as a half doughnut chart.

WinUI Semi-Doughnut Chart
WinUI Semi-Doughnut Chart

Note: For more details, refer to the WinUI Semi-Pie Chart and  Semi-Doughnut Chart documentation.

4. Exploded segments

An exploded segment in a circular chart is used to pull attention to a specific slice of the chart. You can change the explosion setting for all slices or specific slices. This can be done either programmatically or through user interaction.

Exploded Segment in WinUI Pie Chart
Exploded Segment in WinUI Pie Chart

5. Grouping small data points into others category

A chart with a large number of segments can be challenging to decipher. Also, it is difficult to see the smaller segments and apply appropriate colors to distinguish all the segments.

In this scenario, you can group smaller segments into a single other segment. We can easily achieve this using the GroupTo and GroupMode properties.

Grouping Data Points in WinUI Doughnut Chart
Grouping Data Points in WinUI Doughnut Chart

6. Smart data labels

In our WinUI circular charts, you can smartly arrange data labels to avoid overlapping when the data points fall close together.

Smart Data Labels Support in WinUI Doughnut Chart
Smart Data Label Support in WinUI Doughnut Chart

7. Tooltip

The tooltip displays a pop-up with additional information when the mouse hovers over a data point.

Tooltips in WinUI Doughnut Chart
Tooltips in WinUI Doughnut Chart

8. Selection

This feature allows the users to interactively select and highlight a data point. This is widely used to navigate to another page of information about a selected data point or update other components on the same page based on the selected data point.

Selecting Data Points in WinUI Doughnut Chart
Selecting Data Points in WinUI Doughnut Chart

9. Animation

An animated chart, such as the one following, will attract the audience’s attention and direct it to specific points on the graph.

Animated WinUI Doughnut Chart
Animated WinUI Doughnut Chart

10. UI Styling customization

Customization is one of the significant features of any data visualization control. You can customize the look and feel of the WinUI circular charts using the built-in APIs.

Customizing the Appearance of WinUI Doughnut Chart
Customizing the Appearance of WinUI Doughnut Chart

References

For more details about the WinUI circular charts, refer to the following links:

Conclusion

Thanks for reading! In this blog post, we have seen the top 10 features of the Syncfusion WinUI circular charts. These chart types support other features, too. Use these vivid features to elegantly design and visualize the data points in your WinUI charts!

If you aren’t a customer yet, you can try our 30-day free trial to check out these features.

If you wish to send us feedback or would like to submit any questions, please feel free to post them in the comments section of this blog post. You can also contact us through our support forumfeedback portal, or support portal. We are always happy to assist you!

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed