Skip to content

Commit bdbd024

Browse files
Merge pull request #1947 from Syncfusion-Content/hotfix/hotfix-v24.2.3
DOCINFRA-2341_merged_using_automation
2 parents 9fc9cf6 + 45e3754 commit bdbd024

File tree

3 files changed

+39
-4
lines changed

3 files changed

+39
-4
lines changed

File-Formats/DocIO/FAQ.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: FAQ Section | DocIO | Syncfusion
3-
description: Learn about the frequently asked questions in the .NET Word (DocIO) library.
3+
description: In this section, you can discover the various questions asked about manipulation of Word documents using the .NET Word Library (DocIO).
44
platform: file-formats
55
control: DocIO
66
documentation: UG
@@ -2432,7 +2432,7 @@ RUN apt-get update -y && apt-get install libfontconfig -y
24322432

24332433
* In production environment (hosted server machine), ensure whether the Visual C++ Redistributable is properly installed.
24342434

2435-
[Download](https://www.microsoft.com/en-us/download/details.aspx?id=53587) and install Visual C++, if not installed.
2435+
[Download](https://www.microsoft.com/en-us/download/details.aspx?id=53840) and install Visual C++, if not installed.
24362436

24372437
## How to set title when converting Word document to EPUB
24382438

@@ -2885,3 +2885,9 @@ From v20.2
28852885
</td>
28862886
</tr>
28872887
</table>
2888+
2889+
## Why are content controls not preserved as editable form fields in the converted PDF document even when PreserveFormFields is enabled?
2890+
2891+
Content controls behave differently from legacy form fields, such as Text, Checkbox, and Drop-down fields, during conversions to PDF format. While legacy form fields are typically preserved as editable form fields in the resulting PDF document, content controls are converted to plain text. The [PreserveFormFields](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocToPDFConverter.DocToPDFConverterSettings.html#Syncfusion_DocToPDFConverter_DocToPDFConverterSettings_PreserveFormFields) API specifically retains the interactive nature of legacy form fields, not content controls.
2892+
To ensure that form fields remain editable in the PDF converted from Word document, it is recommended to use [Text](https://help.syncfusion.com/file-formats/docio/working-with-form-fields#text-form-field), [Checkbox](https://help.syncfusion.com/file-formats/docio/working-with-form-fields#check-box), and [Drop-down](https://help.syncfusion.com/file-formats/docio/working-with-form-fields#drop-down) form fields instead of content controls in the Word document. Additionally, to preserve the form fields as editable in the resulting PDF, set the [PreserveFormFields](https://help.syncfusion.com/cr/file-formats/Syncfusion.DocToPDFConverter.DocToPDFConverterSettings.html#Syncfusion_DocToPDFConverter_DocToPDFConverterSettings_PreserveFormFields) API to true.
2893+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/DocIO-Examples/tree/main/Word-to-PDF-Conversion/Create-fillable-PDF-from-Word).

File-Formats/Presentation/Charts/Chart-Data-Labels.md

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ control: PowerPoint
66
documentation: UG
77
---
88

9-
# Chart Data Labels
9+
# Chart Data Labels in PowerPoint
1010

1111
Data Labels on a chart make it easier to understand. They show important information about the lines or points on the chart. Using Presentation, you can **customize the data labels in the chart**.
1212

@@ -247,6 +247,35 @@ chart.Series(0).DataPoints(0).DataLabels.Layout.ManualLayout.Top = 3
247247
{% endhighlight %}
248248
{% endtabs %}
249249

250+
## Show Leader lines
251+
252+
The leader lines can be shown in a chart through [ShowLeaderLines](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.Implementation.Charts.ChartDataLabelsImpl.html#Syncfusion_XlsIO_Implementation_Charts_ChartDataLabelsImpl_ShowLeaderLines) API which can be set to all data labels by enabling the leader lines for [DefaultDataPoint](https://help.syncfusion.com/cr/file-formats/Syncfusion.XlsIO.Implementation.Charts.ChartDataPointsCollection.html#Syncfusion_XlsIO_Implementation_Charts_ChartDataPointsCollection_DefaultDataPoint).
253+
254+
The following code illustrates how to enable the leader lines for all data labels in the chart.
255+
256+
{% tabs %}
257+
{% highlight c# tabtitle="C# [Cross-platform]" %}
258+
259+
// Enable the leader lines in Chart.
260+
chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.ShowLeaderLines = true;
261+
262+
{% endhighlight %}
263+
{% highlight c# tabtitle="C# [Windows-specific]" %}
264+
265+
// Enable the leader lines in Chart.
266+
chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.ShowLeaderLines = true;
267+
268+
{% endhighlight %}
269+
{% highlight vb.net tabtitle="VB.NET [Windows-specific]" %}
270+
271+
' Enable the leader lines in Chart.
272+
chart.Series[0].DataPoints.DefaultDataPoint.DataLabels.ShowLeaderLines = true;
273+
274+
{% endhighlight %}
275+
{% endtabs %}
276+
277+
You can download a complete working sample from [GitHub](https://github.com/SyncfusionExamples/PowerPoint-Examples/tree/master/Charts/Show-Leader-Lines/.NET).
278+
250279
## See Also
251280

252281
* [How to change text of data labels for Chart in Presentation](https://support.syncfusion.com/kb/article/13828/how-to-change-the-text-in-data-labels-inside-a-chart-in-presentation-using-c-in-aspnet-core)

File-Formats/XlsIO/Overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Overview of Syncfusion Excel (XlsIO) library | Syncfusion
3-
description: Essential XlsIO is a .NET Excel library to create, read, edit & convert Excel file in WinForms, WPF, UWP, ASP.NET Core, ASP.NET MVC, Xamarin, Blazor, WinUI and .NET MAUI applications
3+
description: .NET Excel library create, read, edit & convert Excel file in WinForms, WPF, UWP, ASP.NET Core, ASP.NET MVC, Xamarin, Blazor, WinUI and .NET MAUI applications.
44
platform: file-formats
55
control: XlsIO
66
documentation: UG

0 commit comments

Comments
 (0)