Mess in the right to left of the text in pdf

Stimulsoft Reports.NET discussion
Post Reply
muhammad.ganji
Posts: 2
Joined: Wed Feb 28, 2024 9:26 am

Mess in the right to left of the text in pdf

Post by muhammad.ganji »

Hello.
In the pdf output using .Net, I have a mess in the right indentation of the text. I use trial version 2023.1.
same text in the View and Pdf
same text in the View and Pdf
Screenshot (8).png (73.98 KiB) Viewed 719 times
It is noteworthy that the Web View output displays correctly and this problem occurs only in the PDF
Lech Kulikowski
Posts: 6271
Joined: Tue Mar 20, 2018 5:34 am

Re: Mess in the right to left of the text in pdf

Post by Lech Kulikowski »

Hello,

Please send us a sample report with test data for analysis.

Thank you.
muhammad.ganji
Posts: 2
Joined: Wed Feb 28, 2024 9:26 am

Re: Mess in the right to left of the text in pdf

Post by muhammad.ganji »

This is simple report with data source.
Report.zip
report.mrt and datasource.json
(9.14 KiB) Downloaded 61 times
I use .Net to export Pdf.

Code: Select all

public StiNetCoreActionResult GetPdf(string modelMrt, string dataSource)
{
    var stimul = new StiReport();
    stimul.LoadFromString(modelMrt);
    var dataTable = JsonConvert.DeserializeObject<dynamic>(dataSource ?? "[]");
    DataSet dataset = StiJsonToDataSetConverterV2.GetDataSet(dataTable);
    stimul.RegData(dataset);
    return StiNetCoreReportResponse.ResponseAsPdf(stimul);

}
Lech Kulikowski
Posts: 6271
Joined: Tue Mar 20, 2018 5:34 am

Re: Mess in the right to left of the text in pdf

Post by Lech Kulikowski »

Hello,

Please send us your request with detailed description on support@stimulsoft.com.

Thank you.
Post Reply