Articles in this section
Category / Section

How to bind the array property in WPF SfChart?

1 min read

The WPF Chart (SfChart) supports binding to array properties using the XBindingPath and YBindingPath. This allows you to visualize array-based data by specifying the index of the array element you want to display. You can bind the same property with different index values.


Data Model


Below is a simple example of a data model where each data point contains an X value and an array of values:

public class TestClass
{
   public double X { get; set; }
   public double[] Y { get; set; }
}
public class TestClassCollection : ObservableCollection<TestClass> {   public TestClassCollection()   {     this.Add(new TestClass { X = 1, Y = new double[] { 4, 10 } });     this.Add(new TestClass { X = 2, Y = new double[] { 8, 15 } });     this.Add(new TestClass { X = 3, Y = new double[] { 12,20 } });   } }

XAML

<chart:ColumnSeries ItemsSource="{Binding}" XBindingPath="X" YBindingPath="Y[0]">
</chart:ColumnSeries>

C#

ColumnSeries series = new ColumnSeries() 
{
ItemsSource = new TestClassCollection(),
XBindingPath = "X",
YBindingPath = "Y[0]"
};

chart.Series.Add(series);

 

 Conclusion

I hope you enjoyed learning how to bind the array property in WPF SfChart.

You can refer to our WPF Chart feature tour page know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our WPF Chart Examples to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied