What’s New in 2023 Volume 1: .NET MAUI Charts
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (173).NET Core  (29).NET MAUI  (203)Angular  (107)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (40)Black Friday Deal  (1)Blazor  (211)BoldSign  (13)DocIO  (24)Essential JS 2  (106)Essential Studio  (200)File Formats  (65)Flutter  (132)JavaScript  (219)Microsoft  (118)PDF  (81)Python  (1)React  (98)Streamlit  (1)Succinctly series  (131)Syncfusion  (897)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (50)Windows Forms  (61)WinUI  (68)WPF  (157)Xamarin  (161)XlsIO  (35)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (146)Chart  (127)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (63)Development  (618)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (39)Extensions  (22)File Manager  (6)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  (501)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (42)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  (381)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (17)Web  (582)What's new  (323)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
What’s New in 2023 Volume 1: .NET MAUI Charts

What’s New in 2023 Volume 1: .NET MAUI Charts

Syncfusion’s .NET MAUI Charts are well-crafted charting controls for visualizing data. They contain a rich gallery of charts and graphs that cater to all charting scenarios.

In this blog, I’ll quickly introduce the new features and chart types included in the Essential Studio 2023 Volume 1 release.

New chart types in Cartesian Charts

There are six new chart types in the .NET MAUI Cartesian Charts control.

Range column chart

The range column chart allows you to visualize data points with range columns, making it easy to identify patterns and trends and compare different data sets. This feature is helpful when you need to specify minimum and maximum values for each data point.

XAML

<chart:SfCartesianChart  x:Name="Chart" 
VerticalOptions="FillAndExpand" Title="{StaticResource title}" > <chart:SfCartesianChart.XAxes> <chart:CategoryAxis/> </chart:SfCartesianChart.XAxes> <chart:SfCartesianChart.YAxes > <chart:NumericalAxis/> </chart:SfCartesianChart.YAxes> <chart:RangeColumnSeries ItemsSource="{Binding TemperatureData}" XBindingPath="Name" High="Value" Low="Size"/> </chart:SfCartesianChart>
.NET MAUI range column chart
.NET MAUI range column chart

Bubble chart

The bubble chart is a visually appealing tool for representing data with multiple dimensions, as the size of the bubbles indicates an additional data dimension. This makes it easy to compare the values of different data points and provides a more comprehensive view of the data.

XAML

<chart:SfCartesianChart>
 
 <chart:SfCartesianChart.XAxes>
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.XAxes>
 
 <chart:SfCartesianChart.YAxes>
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.YAxes>
 
 <chart:BubbleSeries  ItemsSource="{Binding Data}"
                      XBindingPath="Value" 
                      YBindingPath="High"
                      SizeValuePath="Low"/>
</chart:SfCartesianChart>
.NET MAUI bubble chart
.NET MAUI bubble chart

Stacked column chart

A stacked column chart comprises multiple column series placed on top of one another. The height of each column is determined by the value of the data point it represents, allowing for a way to display the cumulative value of data points. This helps us identify the patterns and trends in the data quickly.

XAML

<chart:SfCartesianChart>
 
 <chart:SfCartesianChart.XAxes>
  <chart:CategoryAxis/>
 </chart:SfCartesianChart.XAxes>
 
 <chart:SfCartesianChart.YAxes >
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.YAxes>
 
 <chart:StackingColumnSeries XBindingPath="Year"
                             YBindingPath="Personal"
                             ItemsSource="{Binding RevenueData}"/>

<chart:StackingColumnSeries XBindingPath="Year"
YBindingPath="HomeCare"
ItemSource="{Binding RevenueData}"/> <chart:StackingColumnSeries XBindingPath="Year" YBindingPath="Others" ItemsSource="{Binding RevenueData}"/> </chart:SfCartesianChart>
.NET MAUI stacked column chart
.NET MAUI stacked column chart

Waterfall chart

The waterfall chart is used to represent the cumulative effect of positive and negative values visually. It shows rectangles connected to each other, making it easy to understand the impact of each value on the overall total.

XAML

<chart:SfCartesianChart>
 
 <chart:SfCartesianChart.XAxes >
  <chart:CategoryAxis/>
 </chart:SfCartesianChart.XAxes>
 
 <chart:SfCartesianChart.YAxes>
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.YAxes>
 
 <chart:WaterfallSeries ItemsSource="{Binding RevenueDetails}"
                        AllowAutoSum="True"
                        XBindingPath="Department"  
                        YBindingPath="Value"
                        SummaryBindingPath="IsSummary">
 
 </chart:WaterfallSeries>
</chart:SfCartesianChart>
.NET MAUI waterfall chart
.NET MAUI waterfall chart

Box and whisker chart

A box and whisker chart provides a standardized and concise way of displaying data distribution and identifying outliers. It allows users to represent data as a box plot, highlighting the minimum, first quartile, median, third quartile, and maximum values in a data set.

XAML

<chart:SfCartesianChart>
 
 <chart:SfCartesianChart.XAxes>
  <chart:CategoryAxis x:Name="xAxis"/>
 </chart:SfCartesianChart.XAxes>
 
 <chart:SfCartesianChart.YAxes>
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.YAxes>
 
 <chart:BoxAndWhiskerSeries ItemsSource="{Binding DataSets}"
                            XBindingPath="Levels"
                            YBindingPath="Energy"  
                            ShowOutlier="True"
                            ShowMedian="True"/>
</chart:SfCartesianChart>
.NET MAUI box and whisker chart
.NET MAUI box and whisker chart

Error bar chart

Error bars are used to indicate errors or uncertainties in reported values. They help predict the potential measurement deviations in data.

XAML

<chart:SfCartesianChart>
 
 <chart:SfCartesianChart.XAxes>
  <chart:CategoryAxis/>
 </chart:SfCartesianChart.XAxes>
 
 <chart:SfCartesianChart.YAxes>
  <chart:NumericalAxis/>
 </chart:SfCartesianChart.YAxes>
 
 <chart:ColumnSeries  ItemsSource="{Binding ThermalExpansion}"  
                      XBindingPath="Name" 
                      YBindingPath="Value"
                      Fill="#95DB9C"/>
 
 <chart:ErrorBarSeries ItemsSource="{Binding ThermalExpansion}" 
                       XBindingPath="Name" 
                       YBindingPath="Value" 
                       Mode="Vertical"
                       Type="Custom"/>
</chart:SfCartesianChart>
.NET MAUI error bar chart
.NET MAUI error bar chart

New chart type in .NET MAUI Circular Charts

Radial bar chart

Radial bars are visually appealing and an effective way to compare categories in data using circular shapes. This distinctive design allows easy comparison while also providing an attractive visual.

XAML

<chart:SfCircularChart>
    . . .
 <chart:RadialBarSeries x:Name="radialBarSeries"
                        ItemsSource="{Binding RadialBarSeriesData}"
                        XBindingPath="Name"
                        YBindingPath="Value"/>
</chart:SfCircularChart>
.NET MAUI radial bar chart
.NET MAUI radial bar chart

Exporting chart

Now, you can export our .NET MAUI charts to image formats such as JPEG and PNG. This will make it easier for users to share their charts with others.

C#

SfCartesianChart chart = new SfCartesianChart();
...
chart.SaveAsImage("ChartSample.jpeg");

Conclusion

Thanks for reading! In this blog, we have seen the new chart types and features added to Syncfusion’s .NET MAUI charts controls for the 2023 Volume 1 release. Use these features to enhance the readability of your chart data.

You can see the other new features in the 2023 Volume 3 release by reading our release notes and What’s New pages. Feel free to look at our .NET MAUI controls’ GitHub demos and documentation.

Submit your questions or feature requests in the comments section below. You can also reach us through our support forums, support portal, or feedback portal. We are always happy to assist you!

Test Flight
App Center Badge
Google Play Store Badge
Microsoft Badge
Github Store Badge

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