Search found 1265 matches

by Jan
Thu Feb 09, 2017 11:59 pm
Forum: Stimulsoft Reports.JS
Topic: Report saved in PDF without chart
Replies: 1
Views: 1551

Re: Report saved in PDF without chart

Hello! Sorry for long time answer. It take some time to check this trouble. May be you have added some additional methods to the Array class and is not set it as enumerable: false? Object.defineProperty(Array.prototype, 'indexOf', { enumerable: false }) We will add a new method in next prerelease bu...
by Jan
Sat Aug 20, 2016 8:36 am
Forum: Stimulsoft Reports.NET
Topic: Cross Tab - hide column
Replies: 9
Views: 4842

Re: Cross Tab - hide column

Hello, Leandro!

Sorry, you cannot remove the column from the crosstab in this way.

Thank you.
by Jan
Sat Aug 20, 2016 8:04 am
Forum: Stimulsoft Reports.JS
Topic: Bug with Shapes(Rectangle, Triangle etc) (SOLVED)
Replies: 6
Views: 3754

Re: Bug with Shapes(Rectangle, Triangle etc) (SOLVED)

Hello.

We will change default render mode for the report designer in few next versions.

Thank you.
by Jan
Sat Aug 20, 2016 8:02 am
Forum: Stimulsoft Reports.JS
Topic: Placement bug rounded rectangle
Replies: 1
Views: 1456

Re: Placement bug rounded rectangle

Hello.

Please call following code before report rendering and viewering:

Code: Select all

var options = new Stimulsoft.Viewer.StiViewerOptions();
options.appearance.htmlRenderMode = Stimulsoft.Report.Export.StiHtmlExportMode.Div;
Let me know if you need any help!

Thank you.
by Jan
Tue Jul 05, 2016 6:55 pm
Forum: Stimulsoft Reports.NET
Topic: StiText Component doesn't work correctly
Replies: 10
Views: 6985

Re: StiText Component doesn't work correctly

Hello,

PageNofM its a property of the report object. So you can use following code in event handler:

Code: Select all

e.Value = report.CompiledReport.PageNofM;
or

Code: Select all

e.Value = ((StiText)sender).Report.PageNofM;
Thank you.
by Jan
Fri Jun 24, 2016 6:50 pm
Forum: Stimulsoft Reports.JS
Topic: sub-report
Replies: 8
Views: 3835

Re: sub-report

Hello!

Problem solved. Patch for this problem will be available in next Friday in next prerelease build.
Let me know if you need this patch shortly.

Thank you.
by Jan
Wed Jun 01, 2016 5:59 pm
Forum: Stimulsoft Reports.NET
Topic: Process Duplicate in a New Page
Replies: 3
Views: 2037

Re: Process Duplicate in a New Page

Hello,

Can you illustrate your problem with the help of some screenshots? Please specify which text boxes is broken or moved incorrectly.

Thank you.
by Jan
Wed Jun 01, 2016 5:57 pm
Forum: Stimulsoft Reports.NET
Topic: How was the join Report
Replies: 3
Views: 1792

Re: How was the join Report

Hello,

Please remove following line of the code:

Code: Select all

rep.Dictionary.Synchronize();
Let me know about results.

Thank you.
by Jan
Wed Jun 01, 2016 5:54 pm
Forum: Stimulsoft Reports.WPF
Topic: Grow to height with detail databand
Replies: 3
Views: 3511

Re: Grow to height with detail databand

Hello,

If you need draw a vertical line from top to bottom of the panel? If yes then you can place text boxes directly to the panel.
After then set Linked property for these textboxes to the true. And set GrowToHeight property to the true.

Please check attached image and report.

Thank you.
by Jan
Wed Jun 01, 2016 5:25 pm
Forum: Stimulsoft Reports.JS
Topic: Databand Lines with different number of decimal digits
Replies: 1
Views: 1514

Re: Databand Lines with different number of decimal digits

Hello, You can use the following trick: -place two text boxes at the same place - one with two decimal formatting and one with one decimal formatting; -set property Enabled to false for both textboxes; -add condition with the help of the Conditions property of their text boxes. One condition for the...