Search found 10 matches

by florian
Fri Jun 02, 2023 6:40 am
Forum: Stimulsoft Reports.WEB
Topic: NullReferenceException when recent SixLabors.ImageSharp is referenced
Replies: 7
Views: 1138

Re: NullReferenceException when recent SixLabors.ImageSharp is referenced

What have you found so far? What did you tired? Can you reproduce the problem? Do you need assistance?
by florian
Sun May 14, 2023 12:13 pm
Forum: Stimulsoft Reports.WEB
Topic: NullReferenceException when recent SixLabors.ImageSharp is referenced
Replies: 7
Views: 1138

NullReferenceException when recent SixLabors.ImageSharp is referenced

When a recent version of SixLabors.ImageSharp is referenced, a NullReferenceException is thrown when StiNetCoreReportResponse.ResponseAsPdf is called. See attached sample 'FS.TimeTracking.ReportServer.7z', have a look to 'FS.TimeTracking.ReportServer.csproj' where several combinations are listed. Re...
by florian
Tue Aug 16, 2022 7:41 pm
Forum: Stimulsoft Reports.WEB
Topic: Images shifted when report exported to image
Replies: 4
Views: 727

Re: Images shifted when report exported to image

Not sure what exactly is meant by "scaling is set on your system". My display resultion is 1920x1080 with a "size of text, apps, and other items" set to 100%. The "Advanced scaling settings" are unchanged. I can reproduce the error on 2 different systems (PC and Noteboo...
by florian
Fri Aug 12, 2022 6:15 pm
Forum: Stimulsoft Reports.WEB
Topic: ArgumentOutOfRangeException thrown when StiImageExportSettings.ImageZoom < 1
Replies: 2
Views: 586

ArgumentOutOfRangeException thrown when StiImageExportSettings.ImageZoom < 1

When StiImageExportSettings.ImageZoom is set to lower than 1, the export throws an ArgumentOutOfRangeException: "Parameter "width" (System.Single) must be greater than 0, was 0 (Parameter 'width')"

Sample project attached: ActivityReport.Detailed.ExportError.zip
by florian
Fri Aug 12, 2022 6:04 pm
Forum: Stimulsoft Reports.WEB
Topic: Images shifted when report exported to image
Replies: 4
Views: 727

Images shifted when report exported to image

When a report with images is exported to an image, the images are shifted. Even the trial images seem to be affected. Export to PDF works fine. To see the error with trial images don't use a license key in the sample project and have a look at the bottom of the page where the Stimulsoft image should...
by florian
Fri Jul 01, 2022 2:05 pm
Forum: Stimulsoft Reports.WEB
Topic: Howto concat fields in Text expression
Replies: 3
Views: 662

Re: Howto concat fields in Text expression

OK, thank you. I'll implement a custom function for this.
by florian
Thu Jun 30, 2022 1:47 pm
Forum: Stimulsoft Reports.WEB
Topic: Howto concat fields in Text expression
Replies: 3
Views: 662

Howto concat fields in Text expression

I'd like to concat several source fields into one Text.Text expression. The expression I use is {string.Join(" / ", new []{ source.Field1, source.Field2, ... }.Where(x => x != null)} or simplified to reproduce: {string.Join(" / ", new []{"A", null}.Where(x => x != null)...
by florian
Fri Jan 13, 2017 4:21 pm
Forum: Stimulsoft Reports.WEB
Topic: MVC Designer: Change Designer Options at Runtime / On Action
Replies: 1
Views: 1005

MVC Designer: Change Designer Options at Runtime / On Action

Hello, how can I change the options of the StiMvcMobileDesigner at runtime/onAction. E.g. ShowSaveButton is set to false by default @Html.Stimulsoft().StiMvcMobileDesigner("StiMvcDesigner1", new StiMvcMobileDesignerOptions() { ShowSaveButton = false }) and I'd like to show the button after...