Search found 20 matches

by emanuelv
Wed Mar 06, 2024 5:00 pm
Forum: Stimulsoft Dashboards.WEB
Topic: How to pass charts parameters when there are 2 Arguments
Replies: 6
Views: 2325

Re: How to pass charts parameters when there are 2 Arguments

I know that this question is pretty old but I am running into the same issue and I don't believe that the supplied SalesOverview.mrt report file actually addresses the original question. In the original question, the chart has two arguments: "year" and "Location". When the Intera...
by emanuelv
Tue Dec 22, 2020 10:13 pm
Forum: Stimulsoft Reports.WEB
Topic: Sort Direction Problem
Replies: 5
Views: 2048

Re: Sort Direction Problem

Hello, How are you? Looks like it is still happening on the latest version 2020.5.2. I'm attaching a sample .NET Core project. It's a .NET Core MVC project. You should be able to build it and run it. It uses the SimpleList demo. From my tests, this is happening on Chrome and Microsoft Edge but not o...
by emanuelv
Tue Dec 22, 2020 5:31 pm
Forum: Stimulsoft Dashboards.WEB
Topic: Changing size of table header
Replies: 1
Views: 2084

Changing size of table header

Hello, How are you? I was wondering if there was a way to change the height of a dashboard table header? I could not find the corresponding style for this in the style designer. We were hoping to be able to line-break a column title like in the attached screenshot, but the actual height of the heade...
by emanuelv
Wed Nov 18, 2020 4:19 pm
Forum: Stimulsoft Dashboards.WEB
Topic: Changing style of table scrollbar
Replies: 3
Views: 9766

Changing style of table scrollbar

Hello, How are you? Is it possible to change the style of the scrollbar in a table on a dashboard? See this demo as an example: https://demo.stimulsoft.com/#Net/DashboardSalesByMonth The scrollbars show up when you hover over the "Sales by Month in State" table. However, on light-colored t...
by emanuelv
Thu Nov 12, 2020 2:16 pm
Forum: Stimulsoft Dashboards.WEB
Topic: Saving custom table filters
Replies: 1
Views: 1284

Saving custom table filters

Hello, How are you? I have a question regarding filters on a table in a dashboard. If I have a table on a dashboard and when running the dashboard, the user selects some filters on a table, and maybe puts together some custom filters, is there a way to save those filters to the browser (maybe in loc...
by emanuelv
Thu Nov 12, 2020 1:38 pm
Forum: Stimulsoft Dashboards.WEB
Topic: Hide and/or reorder columns on a table
Replies: 1
Views: 1202

Hide and/or reorder columns on a table

Hello, How are you? If I have a table in a dashboard, is there a way to allow the user viewing the dashboard to drag table columns around to reorder them? Or is there a way to allow them to select which columns they want to show or hide? I saw a similar topic in the forum in which the user was able ...
by emanuelv
Thu Jul 09, 2020 8:42 pm
Forum: Stimulsoft Reports.WEB
Topic: API Controller in a different domain location
Replies: 15
Views: 5569

Re: API Controller in a different domain location

Hi Lech,

That seems to have worked! Thank you so much!

-Emanuel
by emanuelv
Tue Jul 07, 2020 2:11 pm
Forum: Stimulsoft Reports.WEB
Topic: API Controller in a different domain location
Replies: 15
Views: 5569

Re: API Controller in a different domain location

Hello Lech, Thanks for the quick reply. I tried what you suggested (although I had to use (window as any) to prevent typescript errors), but it still did not appear to have any effect. It is still requesting "/api/viewer" which it tries to resolve from the relative path of the web project....
by emanuelv
Mon Jul 06, 2020 1:34 pm
Forum: Stimulsoft Reports.WEB
Topic: API Controller in a different domain location
Replies: 15
Views: 5569

Re: API Controller in a different domain location

Hello, Yes I can. I'm attaching a zip file containing two projects. In the StimulsoftWeb project, I have a normal Angular-style setup. It is basically what was generated from clicking on Publish from one of the sample Stimulsoft demo reports. The only thing I've done is remove the ViewerController.c...
by emanuelv
Wed Jul 01, 2020 3:02 pm
Forum: Stimulsoft Reports.WEB
Topic: API Controller in a different domain location
Replies: 15
Views: 5569

API Controller in a different domain location

Hello, I hope you're well. I am running Stimulsoft in a .NET Core Web project and have it set up simply like this: <script src="~/api/viewer" type="text/javascript"></script> And the Controller is simply: [Produces("application/json")] [Route("api/viewer")] pu...