diff --git a/wpf-toc.html b/wpf-toc.html index 5065b50e96..86929f61a0 100644 --- a/wpf-toc.html +++ b/wpf-toc.html @@ -1868,8 +1868,8 @@
@@ -2377,6 +2377,9 @@
@@ -54,25 +51,16 @@ chart.Save("sfchart.jpg", KnownFolders.PicturesLibrary);
{% highlight c# %}
var memoryStream = new InMemoryRandomAccessStream();
- chart.Save(memoryStream, BitmapEncoder.BmpEncoderId);
-
-
-
- StorageFolder storageFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
-
-
-
- var file = await storageFolder.CreateFileAsync("chartwithstream.jpg", CreationCollisionOption.GenerateUniqueName);
-
-
-
- var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.ReadWrite);
+chart.Save(memoryStream, BitmapEncoder.BmpEncoderId);
- {
+StorageFolder storageFolder = Windows.ApplicationModel.Package.Current.InstalledLocation;
- chart.Save(stream, BitmapEncoder.BmpEncoderId);
+var file = await storageFolder.CreateFileAsync("chartwithstream.jpg", CreationCollisionOption.GenerateUniqueName);
- }
+var stream = await file.OpenAsync(Windows.Storage.FileAccessMode.ReadWrite);
+{
+ chart.Save(stream, BitmapEncoder.BmpEncoderId);
+}
{% endhighlight %}
diff --git a/wpf/Charts/How-To/Print-the-SfChart.md b/wpf/Charts/How-To/Print-the-SfChart.md
index 73e3c436b6..ea44e98a70 100644
--- a/wpf/Charts/How-To/Print-the-SfChart.md
+++ b/wpf/Charts/How-To/Print-the-SfChart.md
@@ -10,7 +10,6 @@ documentation: ug
# Print the SfChart in WPF
To print the SfChart, call the Print method.
-
The following code sample can be used to print the SfChart:
{% highlight c# %}
diff --git a/wpf/Charts/How-To/Serialize-the-SfChart.md b/wpf/Charts/How-To/Serialize-the-SfChart.md
index 01f4909f24..1749e20647 100644
--- a/wpf/Charts/How-To/Serialize-the-SfChart.md
+++ b/wpf/Charts/How-To/Serialize-the-SfChart.md
@@ -12,7 +12,6 @@ documentation: ug
SfChart provides the support for serializing and deserializing control. This section explains on how to serialize and deserialize SfChart.
## Methods:
-
|
|---|
| Description | ||||
|---|---|---|---|---|
| -{{'[`ValueChanged`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfRangeNavigator.html)'| markdownify }} | +{{'[`ValueChanged`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfRangeNavigator.html#Syncfusion_UI_Xaml_Charts_SfRangeNavigator_ValueChanged)'| markdownify }} | ValueChanged (Object sender, EventArgs e) | This event is triggered when the position of the scrollbar is changed | |
|
-`LowerBarLabelsCreated` |
+{{'[`LowerBarLabelsCreated`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfDateTimeRangeNavigator.html#Syncfusion_UI_Xaml_Charts_SfDateTimeRangeNavigator_LowerBarLabelsCreated)'| markdownify }} |
LowerBarLabelsCreated(Object sender, LowerBarLabelsCreatedEventArgs e) |
This event is triggered when the lower bar labels gets created. | |
|
-`UpperBarLabelsCreated` |
-UpperBarLabelsCreated(Object sender, UpperBarLabelsCreatedEventArgs e) |
+{{'[`HigherBarLabelsCreated`](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfDateTimeRangeNavigator.html#Syncfusion_UI_Xaml_Charts_SfDateTimeRangeNavigator_HigherBarLabelsCreated)'| markdownify }} |
+HigherBarLabelsCreated(Object sender, HigherBarLabelsCreatedEventArgs e) |
This event is triggered when the upper bar labels gets created. |