We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
Unfortunately, activation email could not send to your email. Please try again.
Syncfusion Feedback


Overview

The .NET MAUI error bar chart displays tables of means or medians and variabilities. Error bars indicate errors or uncertainties in the reported values, showing possible variations in measurements displayed as data points. This chart also supports zooming, scrolling, tooltips, and trackball.

.NET MAUI Error bar chart.


Key features

.NET MAUI error bar chart with color and thickness customization

Customization

The .NET MAUI error bar chart allows you to customize the color, thickness, and cap length with built-in APIs, making it visually unique.

.NET MAUI error bar chart with drawing modes

Drawing mode

The .NET MAUI error bar chart supports different types of drawing modes, such as horizontal, vertical, and both.

.NET MAUI error bar chart with drawing direction

Drawing direction

The .NET MAUI error bar chart renders in positive, negative, and both directions.


Code example

<ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" 
        xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
        x:Class="ChartExample.MainPage"
        xmlns:local="using:ChartExample"
        xmlns:chart="clr-namespace:Syncfusion.Maui.Charts;assembly=Syncfusion.Maui.Charts">
       
    <Grid>
        <chart:SfCartesianChart HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
            <!--Setting BindingContext-->
            <chart:SfCartesianChart.BindingContext>
                <local:ViewModel/>
            </chart:SfCartesianChart.BindingContext>

            <!--Initialize the horizontal axis for the .NET MAUI Cartesian Chart.-->
            <chart:SfCartesianChart.XAxes>
                <chart:CategoryAxis/>
            </chart:SfCartesianChart.XAxes>

            <!--Initialize the vertical axis for the .NET MAUI Cartesian Chart.-->
            <chart:SfCartesianChart.YAxes>
                <chart:NumericalAxis/>
            </chart:SfCartesianChart.YAxes>
           
            <!--Adding Error Bar Series to the .NET MAUI Cartesian Chart.-->
            <chart:ErrorBarSeries 
                        ItemsSource="{Binding Data}" Type="Custom"
                        XBindingPath="Month" HorizontalErrorPath="Low"
                        YBindingPath="Target" VerticalErrorPath="High">
            </chart:ErrorBarSeries> 
        </chart:SfCartesianChart>
    </Grid>
</ContentPage>
public class Model
{
    public string Month { get; set; }

    public double Target { get; set; }
    
    public double High { get; set; }
    
    public double Low { get; set; }

    public Model(string xValue, double yValue, double high, double low)
    {
        Month = xValue;
        Target = yValue;
        High = high;
        Low = low;
    }
}

public class ViewModel
{
    public ObservableCollection<Model> Data { get; set; }

    public ViewModel()
    {
        Data = new ObservableCollection<Model>()
        {
            new Model("Jan", 50, 5, 0.5),
            new Model("Feb", 70, 5, 0.5),
            new Model("Mar", 65, 5, 0.5),
            new Model("Apr", 57, 5, 0.5),
            new Model("May", 48, 5, 0.5), 
        };
    }
}

Learning resources

Navigate to the GitHub code used to configure the .NET MAUI error bar chart

GitHub Code

The .NET MAUI error bar chart configuration code is available on GitHub.

Navigate to the user guide to learn about the options available to customize the .NET MAUI error bar chart

.NET MAUI Error Bar Chart User Guide

Learn about the options available to customize the .NET MAUI error bar chart.

Navigate to the API reference documentation of the .NET MAUI error bar chart

.NET MAUI Error Bar Chart API Reference

Explore the .NET MAUI error bar chart APIs.


Scroll up icon

Warning Icon You are using an outdated version of Internet Explorer that may not display all features of this and other websites. Upgrade to Internet Explorer 8 or newer for a better experience.Close Icon

Live Chat Icon For mobile
Live Chat Icon