Search found 5238 matches

by Lech Kulikowski
Tue Mar 21, 2023 1:16 pm
Forum: Stimulsoft Reports.WEB
Topic: Unable to obtain an analog of the class 'Stimulsoft.Report.StiTableStyle'
Replies: 1
Views: 43

Re: Unable to obtain an analog of the class 'Stimulsoft.Report.StiTableStyle'

Hello,

We need some additional time to investigate the issue, we will let you know about the result.

Thank you.
by Lech Kulikowski
Tue Mar 21, 2023 1:15 pm
Forum: Stimulsoft Reports.WEB
Topic: Thousand separator . and not ,
Replies: 8
Views: 216

Re: Thousand separator . and not ,

Hello,

There are no other standard ways to change it.
As a way, you can add your own function in which set format as you need.

Thank you.
by Lech Kulikowski
Thu Mar 16, 2023 7:25 pm
Forum: Stimulsoft Reports.JS
Topic: Setting the current page using javascript.
Replies: 3
Views: 41

Re: Setting the current page using javascript.

Hello,

Please try to use the "GoToPage" action.

Thank you.
by Lech Kulikowski
Thu Mar 16, 2023 7:22 pm
Forum: Stimulsoft Reports.WEB
Topic: Designer exception when getting columns from Assembly.
Replies: 1
Views: 31

Re: Designer exception when getting columns from Assembly.

Hello, This will not work. Our standalone designer is based on NetFramework 4.7, and your assembly is .Net7. You can create .Net7 project, register your data from code, and call the designer: var report = new StiReport(); report.RegBusinessObject("name", object); report.Dictionary.Synchron...
by Lech Kulikowski
Thu Mar 16, 2023 7:12 pm
Forum: Stimulsoft Reports.WEB
Topic: Thousand separator . and not ,
Replies: 8
Views: 216

Re: Thousand separator . and not ,

Hello,

Please try to use:
{String.Format(System.Globalization.CultureInfo.CreateSpecificCulture("en-US"),"{0:N2}",Variable1)}
or
{Replace(Format("{0:N2}",Variable1), ",", ".")}

Thank you.
by Lech Kulikowski
Thu Mar 16, 2023 6:54 pm
Forum: Stimulsoft Reports.WEB
Topic: IIF function
Replies: 1
Views: 32

Re: IIF function

Hello,

Please clarify what data source and "weight" column types in your report.

Thank you.
by Lech Kulikowski
Thu Mar 16, 2023 6:45 pm
Forum: Stimulsoft Reports.JS
Topic: use in react typeacript problem in preview and print pdf
Replies: 2
Views: 50

Re: use in react typeacript problem in preview and print pdf

Hello,

We apologize for the delay, but we need some extra time to investigate the issue thoroughly. We will keep you informed about the result as soon as possible.

Thank you for your patience.
#10726
by Lech Kulikowski
Wed Mar 15, 2023 10:23 am
Forum: Stimulsoft Reports.ANGULAR
Topic: Direct Print in Angular
Replies: 5
Views: 52

Re: Direct Print in Angular

Hello,

You are welcome.
by Lech Kulikowski
Wed Mar 15, 2023 10:21 am
Forum: Stimulsoft Reports.NET
Topic: Variance, standard deviation and weighted sums
Replies: 1
Views: 44

Re: Variance, standard deviation and weighted sums

Hello,

You can try to use calculation columns with the necessary expressions. Also, you can use the DataTrasformation item:
https://stimulsoft.com/en/documentation ... mation.htm

Thank you.