From 28baf2f096d9b98d4430f772d0086807f25c9283 Mon Sep 17 00:00:00 2001 From: subash_s Date: Wed, 15 Jan 2025 17:31:35 +0530 Subject: [PATCH 1/2] added readme content --- README.md | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 654e70c..dc394b7 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,29 @@ -# WPF Chart Binding Samples +# Load Data from Different Data Sources into WPF Charts -The binding of varies ItemsSource types to WPF Charts is covered in this section. \ No newline at end of file +The Syncfusion WPF Charts control is optimized to visualize a huge volume of data elegantly. Its rich feature set includes functionalities like data binding, multiple axes, legends, animations, data labels, annotations, trackballs, tooltips, gradients, technical indicators, zooming, and more. + +In this article, we’ll see how to load data from different data sources in the WPF Charts control. + +There are three essential properties of the WPF Charts to configure the data: + +**ItemsSource:** Collects the data points used to generate the chart. + +**XBindingPath:** A bindable property that gets the property path of x-axis data in ItemsSource to render the chart series. + +**YBindingPath:** A bindable property that gets the property path of y-axis data in ItemsSource to render the chart series. + +## Key data sources +Syncfusion WPF Charts offers over 45 chart types. All the chart types support loading data from the following data sources: + +* IEnumerable +* DataTable +* Array +* SQL +* JSON +* CSV + +For a detailed, step-by-step guide on how to load different data from various data sources in WPF Charts, refer to the comprehensive blog titled [Seamlessly Load Data from Different Data Sources into WPF Charts](https://www.syncfusion.com/blogs/post/different-data-source-wpf-charts). + +## Troubleshooting +### Path too long exception +If you are facing a path too long exception when building this example project, close Visual Studio and rename the repository to short and build the project. \ No newline at end of file From db9ab08572469f37a448179e74257d6a88e0b9b6 Mon Sep 17 00:00:00 2001 From: subash_s Date: Mon, 20 Jan 2025 15:02:25 +0530 Subject: [PATCH 2/2] changes made --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index dc394b7..38d325c 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,16 @@ # Load Data from Different Data Sources into WPF Charts -The Syncfusion WPF Charts control is optimized to visualize a huge volume of data elegantly. Its rich feature set includes functionalities like data binding, multiple axes, legends, animations, data labels, annotations, trackballs, tooltips, gradients, technical indicators, zooming, and more. +The [Syncfusion WPF Charts](https://help.syncfusion.com/wpf/charts/getting-started) is optimized to visualize a huge volume of data elegantly. Its rich feature set includes functionalities like data binding, multiple axes, legends, animations, data labels, annotations, trackballs, tooltips, gradients, technical indicators, zooming, and more. In this article, we’ll see how to load data from different data sources in the WPF Charts control. There are three essential properties of the WPF Charts to configure the data: -**ItemsSource:** Collects the data points used to generate the chart. +[ItemsSource](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_ItemsSource): Collects the data points used to generate the chart. -**XBindingPath:** A bindable property that gets the property path of x-axis data in ItemsSource to render the chart series. +[XBindingPath](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_XBindingPath): A bindable property that gets the property path of x-axis data in ItemsSource to render the chart series. -**YBindingPath:** A bindable property that gets the property path of y-axis data in ItemsSource to render the chart series. +[YBindingPath](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.XyDataSeries.html#Syncfusion_UI_Xaml_Charts_XyDataSeries_YBindingPath): A bindable property that gets the property path of y-axis data in ItemsSource to render the chart series. ## Key data sources Syncfusion WPF Charts offers over 45 chart types. All the chart types support loading data from the following data sources: