Search found 32 matches

by djjoyro
Wed Dec 07, 2022 11:45 am
Forum: Stimulsoft Reports.JS
Topic: Big cross tab slow rendering
Replies: 3
Views: 660

Re: Big cross tab slow rendering

Thank you I have sent sample report and data on email.
by djjoyro
Mon Dec 05, 2022 3:27 pm
Forum: Stimulsoft Reports.JS
Topic: Big cross tab slow rendering
Replies: 3
Views: 660

Big cross tab slow rendering

Hello, I am trying to use stimulsoft reports.js (latest version) and I have the following problem: I want to render a report with a crossTab on it (2 fixed columns). Rendering the report with 2+2 columns: 10 000 rows takes about 6 seconds 30 000 rows takes about 25 seconds 50 000 rows takes about 68...
by djjoyro
Tue Mar 01, 2022 2:11 pm
Forum: Stimulsoft Reports.JS
Topic: string.Format not working as expected in c#
Replies: 5
Views: 1016

Re: string.Format not working as expected in c#

Hello,

I can confirm it is working as expected in 2022.1.6.
Thank you.
by djjoyro
Thu Jan 27, 2022 9:13 am
Forum: Stimulsoft Reports.JS
Topic: string.Format not working as expected in c#
Replies: 5
Views: 1016

Re: string.Format not working as expected in c#

Hello,

Thank you for your reply.
The problem is that "Page {0} / {1}" is custom and sent in a variable before rendering the report. So the format must be custom and stored in a variable. Is there a way to accomplish this ?

Thank you.
by djjoyro
Wed Jan 26, 2022 2:33 pm
Forum: Stimulsoft Reports.JS
Topic: string.Format not working as expected in c#
Replies: 5
Views: 1016

string.Format not working as expected in c#

Hello,

Maybe it is not c# anymore but how can I have this command working as in c# ?
{string.Format("Page {0} / {1}", PageNumber, TotalPageCount)}

now it replaces {0} but instead of {1} I have undefined, no metter what is the second parameter passed.

Thank you.
by djjoyro
Tue Jan 25, 2022 12:19 pm
Forum: Stimulsoft Reports.JS
Topic: Best practices
Replies: 1
Views: 673

Best practices

Hello, We are planing to use Stimulsoft Reports.JS in some of our web applications. We have a version for Stimulsoft Reports.WPF which was a great tool. Our web applications can run on different servers (some of them local servers in different companies) I have done a few tests with Reports.JS and I...
by djjoyro
Tue Jan 25, 2022 11:55 am
Forum: Stimulsoft Reports.JS
Topic: Cross tab cell size auto size
Replies: 6
Views: 1377

Re: Cross tab cell size auto size

Hello,

It seems that everything is getting fine when I load the fonts from the template:
Stimulsoft.Base.StiFontCollection.addOpentypeFontFile("arial.ttf");

I didn't knew it is required to render the report in node.js. Now I know. Thank you.
by djjoyro
Tue Jan 25, 2022 10:21 am
Forum: Stimulsoft Reports.JS
Topic: PDF exporting works incorrectly with code and source from example
Replies: 4
Views: 1167

Re: PDF exporting works incorrectly with code and source from example

Hello,

In case anyone else has this problem, the solution is to import all the used fonts in report with
Stimulsoft.Base.StiFontCollection.addOpentypeFontFile("arial.ttf");
It worked for me after placing arial.ttf file in the root of the project.

Have a nice day.
by djjoyro
Tue Jan 25, 2022 10:08 am
Forum: Stimulsoft Reports.JS
Topic: PDF exporting works incorrectly with code and source from example
Replies: 4
Views: 1167

Re: PDF exporting works incorrectly with code and source from example

Hello,

I have the same problem in version 2022.1.4. Is there any fix for this ?

Thank you.
by djjoyro
Fri Jan 21, 2022 12:40 pm
Forum: Stimulsoft Reports.JS
Topic: Cross tab cell size auto size
Replies: 6
Views: 1377

Re: Cross tab cell size auto size

Hello, I have some other information. It seems that this is happening only when the report is rendered in node.js on the server side and passed to the client as: report.saveDocumentToJsonString() On the client side I'm loading the report using report.load(reportJsonStringFromServer) Is there anythin...