Telerik Forums
Reporting Forum
1 answer
146 views
I am trying to repeat a doughnut graph for each row returned in my data source in the visual studio report designer. Is this possible? It's currently combining all the rows into a single doughnut graph.
Momchil
Telerik team
 answered on 11 Nov 2022
1 answer
254 views
I have attached the Telerik report design SS, as I have used 2 tables Lease and credit, and from this, I want to subtract the subtotal between lease and credit and show it in the grand total. But I am stuck in that, I have tried lots of solutions but I am not achieving my result.
Please share your suggestions, it will be very helpful.

Thank you in advance.

Todor
Telerik team
 answered on 11 Nov 2022
1 answer
267 views

On Telerik report Designer R3 2020 I noticed a bug when using the custom format (MMMM dd, yyyy) to show any dates for December.

it would write Desember instead of December.

Please advise

Thank you,

Moe Moussa

Dimitar
Telerik team
 answered on 09 Nov 2022
1 answer
177 views

Hi, I make a TestProject with Telerik reporting Rest service R3 2022,

But it shows just Telerik Reporting REST Service is up and running.

I think I need to modify that part to call the report file, what should I do? And if I called the file, how do I set the report parameter in the file?


        $(document).ready(function () {
            const url = '/api/reports/formats';

            $.getJSON(url, function () {
                $("#content").text("Telerik Reporting REST Service is up and running.");
            })
                .fail(function (data) {
                    $("#content").html("Telerik Reporting REST Service is NOT running: <br />" + data.responseText);
                });
        });

 

 

 

 

Dimitar
Telerik team
 answered on 08 Nov 2022
3 answers
538 views

My environment

  1. Telerik Report Designer, v16.2.22.914, Target Framework: NET 6.0
  2. database: PostgreSQL
  3. data provider: Npgsql version: 6.0.7
  4. 1 database table named 'facilities' with columns:
    • billing_month: timestamp
    • facility_id: varchar(16)
  5. 1 report parameter defined as
    1. name: BillingMonth
    2. type: DateTime
    3. Value: 6/1/2019
  6. 1 data source defined as
    1. name: facilities
    2. sql: "select billing_month schema.facilities where billing_month = @BillingMonth"
  7. 1 data source parameter defined as:

    1. name: @BillingMonth

    2. DbType: DateTime2

    3. value: = Parameters.BillingMonth.Value

  8. 1 design time parameter defaulted to

    1. name: @BillingMonth

    2. Constant Value: 6/1/2019

The Issue

When I click "Execute Query" on the preview data source results screen in the configure SQL Data Source wizard am presented with an error such as: Can't write CLR type System.String with handler type TimestampTzHandler or Can't write CLR type System.String with handler type TimestampHandler.

If I dismiss the error and hit "Finish" Data explorer will not show the data fields but instead displays the same error with a rather long stack trace.

Interestingly enough, the report may still work, but design time assistance is unavailable. For example I cannot drag data source fields to the report. To validate I created another data source for the list of unique billing months, assigned that to "AvailableValues" of the BillingMonth report parameter, and set Visible to True. I can then select from an appropriate month in the report Preview and run the report.

My Question

What is the appropriate format to specify a DateTime constant value in the design time parameters window of the Configure SQL Data Source wizard?

Previously, when we were targeting oracle specifying M/D/YYYY worked fine but as we're retargeting PostgreSQL we find ourselves with this mystery.

 

 

 


Dimitar
Telerik team
 answered on 07 Nov 2022
3 answers
377 views

Hello,

I have a project in .NET Framework 4.6.1 with a web page that use a ReportViewer telerik control. To make everything clearer i have to change the parameter section from ListView to ComboBox. I'm using the library Telerik.ReportViewer.Html5.WebForms v.14.1.20.618 for reporting, while the rest of the projecxt is Telerik for AJAX.

Mi first question is: can you confirm me that with this setting i can activate the ComboBox?

The second question is: how can i do that? In ReportViewer I can't see the element Parameters also after adding in the project the file jquery-3.3.1.min.js

Thanks

Dimitar
Telerik team
 answered on 07 Nov 2022
1 answer
580 views

I have a dataset that is returning one row, with a field called [Percent of Total] the field is formatted like 0.75 (representing 75%)

I want to use this value in a pie chart with the pie chart filled 75% of the way, but I can't seem to figure out how to achieve this.
The chart builder in Telerik is not very user friendly...

Todor
Telerik team
 answered on 04 Nov 2022
1 answer
241 views
We are creating reports with the Web Report Designer (hosted on IIS as ASP.NET Core app) and display the reports with the Angular Report viewer. One requirement is to to show a list of all files in a folder (located at a file server) which is defined by a report parameter. E.g. if the report parameter is "42" a list of all files in the folder "//fileshare/objects/42" are displayed in the report. Is there a way to create reports with this capability with the web report designer or any other report designer tool?
Dimitar
Telerik team
 answered on 03 Nov 2022
1 answer
306 views

Hi, support

 

I want to create a report viewer server and send a request from the website to url.

C:\Program Files (x86)\Progress\Telerik Reporting R2 2022\Examples\CSharp\.NET 6\Html5IntegrationDemo
I'm taking that into consideration
When I type http://localhost:51863/index.html, the screen appears, and the leaflet about the product is http://localhost:51863/goodsPop, and the information about people is http://localhost:51863/employee. I wonder what to do in this case.

            {
                endpoints.MapRazorPages();
                endpoints.MapControllers();
            });
            app.MapControllerRoute(
                name: "default",
                pattern: "{controller=Home}/{action=Index}/{id?}"
            );
            app.Run();
Should I add it to the Program.cs part like the code above and create a controller separately? Or is there any other way?



Also, we are going to send jsonData to the url in post format, and in this case, I wonder how to receive the value in the report viewer server and deliver it to the report.

And there are Html5IntegrationDemo and ReportingRestServiceCorsDemo in the folder of Net6, what is the difference between the two projects?


Todor
Telerik team
 answered on 03 Nov 2022
1 answer
210 views

[Report Designer View]

[Report Explorer]

[Properties of ImageView(GoodsName)]

[Edit Expression(GoodsName)]

='<svg style="background-color:green">
    <text
        font-family="HY헤드라인M"
        fill="black" 
        x="0%" 
        y="50%" 
        textLength="100%"
        dominant-baseline="middle" 
        lengthAdjust="spacingAndGlyphs"   
    >
        '+ Fields.goodsName+'
    </text>
</svg>'

[Report Print View]

[Print View]

(When I push this Print Icon)

Hello, thank you for your reply to the previous inquiry.

I have a question while applying it.
(What I asked you before: https://www.telerik.com/forums/how-to-stretch-in-textbox)


1. Report Print View screen and Print View screen are different.
2. The green box on the Report Print View screen is the size and location of the goodsName currently set to the Report Parameter.
I'd like to stretch the goodsName in the green box. It's okay if the letters are crushed, so is there a way to put the letters in the green box exactly like this?


Dimitar
Telerik team
 answered on 03 Nov 2022
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?