diff --git a/README.md b/README.md
index e9907d5..5e4cb89 100644
--- a/README.md
+++ b/README.md
@@ -1,10 +1,11 @@
-# How-to-perform-lazy-loading-in-WPF-Chart-SfChart-
+# How to perform lazy loading in WPF SfChart
This sample demonstrates how to perform lazy loading in WPF Chart(SfChart).
Here's a step-by-step guide on how to perform lazy loading in a WPF Chart using the Syncfusion SfChart
## Step 1:
Initialize the SfChart with Primary and Secondary axis.
+
## Step 2:
Hook the PanChanged event in SfChart and set the required ZoomFactor on the primary axis.
@@ -35,10 +36,6 @@ XAML
chart.SecondaryAxis = yAxis;
this.Content = chart;
-
-
-
-
## Step 3 :
Initialize the ChartZoomPanBehavior and enable panning by setting EnablePanning to “True”.
@@ -57,7 +54,7 @@ Initialize the ChartZoomPanBehavior and enable panning by setting EnablePanning
## Step 4:
Implement the chart_PanChanged method to calculate the end range of the chart. As horizontal scrolling or panning reaches the end of the chart, additional data points are added, then adjust the position of the xAxis range using ZoomPosition.
- ### C#
+### C#
**// startValue = You can set the last value of the data source in viewModel.**
private void chart_PanChanged(object sender, PanChangedEventArgs e)
@@ -82,5 +79,7 @@ Implement the chart_PanChanged method to calculate the end range of the chart. A

## 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.
+
+For more details, refer to the KB on [how to perform lazy loading in WPF Chart SfChart](https://support.syncfusion.com/kb/article/14567/how-to-perform-lazy-loading-in-wpf-chart-sfchart).
diff --git a/SimpleSample/MainWindow.xaml b/SimpleSample/MainWindow.xaml
index f668a5b..23380dc 100644
--- a/SimpleSample/MainWindow.xaml
+++ b/SimpleSample/MainWindow.xaml
@@ -29,8 +29,8 @@
YBindingPath="YValue"
Stroke="#ff933d"
Interior="#FFF1D8"
- EnableAnimation="True" Margin="-183,-4,182,4"
- >
+ EnableAnimation="True">
+
diff --git a/SimpleSample/SimpleSample.csproj b/SimpleSample/SimpleSample.csproj
index 3e0a87c..eef8d8b 100644
--- a/SimpleSample/SimpleSample.csproj
+++ b/SimpleSample/SimpleSample.csproj
@@ -2,7 +2,7 @@
WinExe
- net6.0-windows
+ net8.0-windows
enable
true