Populating Data in Xamarin Charts (SfChart)

25 Sep 20235 minutes to read

SfChart control can be configured with data points using ItemsSource property of ChartSeries. There are two ways, you can create data points for chart.

Chart Data Point

One way is to create a collection of ChartDataPoint objects and assign this collection to ItemsSource property. Here, each ChartDataPoint object represents a data point in a chart series.

NOTE

ChartDataPoint class has few overloaded constructors depending on the number of y-values required to plot a data point for a particular series type. For example, you can use a constructor with two parameters to instantiate data point for XYDataSeries like Line, Spline, and Pie etc.

Following code snippet illustrates this,

  • C#
  • public class DataModel
    {
    	
    	public ObservableCollection<ChartDataPoint>  HighTemperature{ get; set; }
    
    	public DataModel ()
    	{
    	
    		HighTemperature = new ObservableCollection<ChartDataPoint> ();
    
    		HighTemperature.Add (new ChartDataPoint ("Jan", 42));
    		HighTemperature.Add (new ChartDataPoint ("Feb", 44));
    		HighTemperature.Add (new ChartDataPoint ("Mar", 53));
    		HighTemperature.Add (new ChartDataPoint ("Apr", 64));
    		HighTemperature.Add (new ChartDataPoint ("May", 75));
    		HighTemperature.Add (new ChartDataPoint ("Jun", 83));
    		HighTemperature.Add (new ChartDataPoint ("Jul", 87));
    		HighTemperature.Add (new ChartDataPoint ("Aug", 84));
    		HighTemperature.Add (new ChartDataPoint ("Sep", 78));
    		HighTemperature.Add (new ChartDataPoint ("Oct", 67));
    		HighTemperature.Add (new ChartDataPoint ("Nov", 55));
    		HighTemperature.Add (new ChartDataPoint ("Dec", 45));
    
    	}
    
    }
    <chart:SfChart>
    
    	<chart:SfChart.Series>
    
    		<chart:ColumnSeries ItemsSource="{Binding HighTemperature}"/>
    
    	</chart:SfChart.Series> 
    
    </chart:SfChart>
    //Adding the series to the chart and set the ItemsSource property
    
    chart.Series.Add (new ColumnSeries () {
    	
    	ItemsSource = dataModel.HighTemperature
    
    });

    Custom Object

    Another way is to assign a collection of custom objects to the ItemsSource property. In this case, you need to set the XBindingPath and YBindingPath properties of chart series with the property names of the custom object which contains the x-value/category and y-value respectively.

    NOTE

    While using custom objects, XBindingPath property is required for all types of chart series. You need to set YBindingPath property only for the XYDataSeries types which needs single y-value for a data point. For example, Line, Spline, Column, Bar, Pie etc. For BubbleSeries type, you need to set both YBindingPath and Size properties since it requires two y-values to plot a single bubble data point. In the case of financial series types like Candle and HiLoOpenClose, which requires four y-values for a single data point, you need to set High, Low, Open and Close properties with the property names of a custom object which contains respective values.

  • C#
  • [C#]
    
    public class MonthDemand
    
    {
    
    	public MonthDemand(string demand, double year2010, double year2011)
    	{
    
    		this.Demand = demand;
    
    		this.Year2010 = year2010;
    
    		this.Year2011 = year2011;
    
    	}
    
    	public string Demand { get; set; }
    
    	public double Year2010 { get; set; }
    
    	public double Year2011 { get; set; }
    
    }
    
    public class DataModel
    {
    	
    	public ObservableCollection<MonthDemand>  Demands{ get; set; }
    
    	public DataModel ()
    	{
    
    		Demands = new ObservableCollection<MonthDemand>();
    
    		Demands.Add(new MonthDemand("Jan", 42, 27));
    		Demands.Add(new MonthDemand("Feb", 44, 28));
    		Demands.Add(new MonthDemand("Mar", 53, 35));
    		Demands.Add(new MonthDemand("Apr", 64, 44));
    		Demands.Add(new MonthDemand("May", 75, 54));
    		Demands.Add(new MonthDemand("Jun", 83, 63));
    		Demands.Add(new MonthDemand("Jul", 87, 68));
    		Demands.Add(new MonthDemand("Aug", 84, 66));
    		Demands.Add(new MonthDemand("Sep", 78, 59));
    		Demands.Add(new MonthDemand("Oct", 67, 48));
    		Demands.Add(new MonthDemand("Nov", 55, 38));
    		Demands.Add(new MonthDemand("Dec", 45, 29));
    
    	}
    
    }
    <chart:SfChart>
    ...
    
      <chart:SfChart.Series>
    
    	  <chart:ColumnSeries ItemsSource="{Binding Demands}" XBindingPath="Demand" 
    	 					  YBindingPath="Year2010"/>
    
      </chart:SfChart.Series>
    
    </chart:SfChart>
    chart.Series.Add (new ColumnSeries () {
    	
    	ItemsSource = dataModel.Demands,
    
    	XBindingPath = "Demand",
    
    	YBindingPath = "Year2010"
    
    });

    NOTE

    You can refer to our Xamarin Charts feature tour page for its groundbreaking feature representations. You can also explore our Xamarin.Forms Charts example to knows various chart types and how to easily configured with built-in support for creating stunning visual effects.

    See also

    How to bind the Xamarin.Forms pie chart tooltip to “Others” category values

    How to pass a JSON array to Xamarin.Forms Chart

    How to bind Series from MVVM pattern in Xamarin.Forms Chart

    How to bind array collection to Xamarin.Forms Chart

    How to bind the SQLite Database to the Xamarin.Forms Chart