Telerik Forums
Reporting Forum
2 answers
225 views

Hello,

I am using a HTML5 Telerik Report Designer. I have created a line-with-markers chart and added tooltip to it as well.

However, in the following graph, the tooltip is only displayed when the mouse is hovered on top of the marker, while I want a crosshair tooltip.

I have tried using Kendo UI for jQuery to achieve this, however, it does not link with the data that is generated with the Report Designer.

$("#reportViewer1").kendoTooltip({ filter: "path[data-tooltip-title]" });

This displays a blank screen alongside the Designer tooltip:

 

Is there any way a crosshair tooltip can be added to a HTML5 Report Designer graph?

 

 

 

Todor
Telerik team
 answered on 14 Feb 2020
6 answers
787 views

Hello, 

Could you advice on how to show summary info from row values?

The data source data looks like this - see RawData.png attached. 

I need to show a table which looks like this - see ResultData.png attached. 

 

Thanks

Katia
Telerik team
 answered on 14 Feb 2020
1 answer
754 views

I have a web app, in .Net Core 3.1 and I am using Telerik Reporting to generate my report. I am getting an error which says:
"Failed to load resource: the server responded with a status of 500 (Internal Server Error) - api/reports/formats:1"

 

I don't think the serviceUrl is the issue, but here it is:

<script type="text/javascript">
        $(document).ready(function () {
            $("#btnReport").click(function () {
                var viewer = $("#reportViewer1").data("telerik_ReportViewer");
                viewer.reportSource({
                    report: "KarposhReports.Temp, KarposhReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
                    parameters: { imageUrl: $("#imageUrl").attr('href') }
                });
                viewer.refreshReport();
                $("#reportViewer1").show(0);
            });
            $("#reportViewer1")
                .telerik_reportViewer1({
                    serviceUrl: "/api/reports",
                    reportSource: {
                        report: "KarposhReports.Temp, KarposhReports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null"
                    },
                    viewMode: telerikReportViewer.ViewModes.INTERACTIVE,
                    scaleMode: telerikReportViewer.ScaleModes.SPECIFIC,
                    scale: 1.0,

                    ready: function () {
                        this.refreshReport();
                    }
                });
        });

Eric R | Senior Technical Support Engineer
Telerik team
 answered on 13 Feb 2020
1 answer
146 views

I Can't use ObjectDataSource with my project because Wizard always crash and restart VS 2017 while searching types and classes in all assemblies.

I have a huge project and my domain entities assembly has a lot of dll references. 

Can I set the list of assembly Wizard sould use without going through others assemblies?

 

What can i do to solve this problem?

 

thks

Neli
Telerik team
 answered on 13 Feb 2020
1 answer
905 views

I have some old reports that were created using the Visual Studio designer. These reports also include some logic in events, such as positioning and sizing elements dynamically, given that some reports have a very complex layout that at the time was impossible to replicate without adding this “code behind” logic.

With.Net Core applications, since the Telerik Reporting Visual Studio Designer doesn’t work on .Net Standard libraries, what path should I take in order to have some custom logic run within the report? If I start using the stand-alone designer, could I add some programming logic to the report with an .TRDP file?

Thank you.

Todor
Telerik team
 answered on 13 Feb 2020
7 answers
276 views

Hello,

I have installed the newest releases (Telerik Reporting R3 2019) via Progess Control Panel on my computer.

I opened my project in VS 2010 and wanted to upgrade all the reporting dll's.

But when I click on the menu entry "Upgrade Wizard" nothing happens!

No further window appears!

See the screenshoot!

How can I solve this problem?

Best regards

Simon

 

 

Todor
Telerik team
 answered on 12 Feb 2020
1 answer
433 views
I am trying to open an old Telerik 4 report DLL created in C# some 10 years ago. I am guessing the dll is circa Visual Studio 2010 or earlier with the Visual Studio Telerik designer of it's time. The report runs fine, but I am trying to upgrade it to the latest Telerik version. I was hoping to open the DLL in Designer (x86) and save as a .trdx and then open in Telerik Designer (64 bit) and save out to dll or something. When I try to open the dll, is get this error. What can I do?
Todor
Telerik team
 answered on 12 Feb 2020
1 answer
262 views

Hi,

Is it possible to bind a click event to a pie chart, it will trigger to refresh another chart.

For my case when I click a pie chart, it should refresh the below charts for that particular category.

Eric R | Senior Technical Support Engineer
Telerik team
 answered on 11 Feb 2020
3 answers
2.1K+ views
    List<ReportVentasFamiliaDto> dataSource = new List<ReportVentasFamiliaDto>();
    dataSource.Add(new ReportVentasFamiliaDto()
    {
        PorcentajeIva = 10,
        FamiliaNombre = "Familia"
    });
 
 
    var objectDataSource = new Telerik.Reporting.ObjectDataSource();
    objectDataSource.DataSource = dataSource;
    objectDataSource.DataMember = "table1";
 
    var typeReportSource = new TypeReportSource() {
        TypeName = "Report1.trdp" };
    typeReportSource.Parameters.Add(new Parameter()
    {
        Name = "objectDataSource2",
        Value = objectDataSource
    });
    typeReportSource.Parameters.Add(new Parameter()
    {
        Name = "Text",
        Value = "valor"
    });
 
 
 
    }
 
@(Html.TelerikReporting().ReportViewer()
        .Id("reportViewer1")
        .ServiceUrl(Url.Content("/api/reports/"))
        .TemplateUrl("/Resources/Templates/telerikReportViewerTemplate.html")
        .ReportSource(typeReportSource)
        .ViewMode(ViewMode.Interactive)
        .ScaleMode(ScaleMode.Specific)
        .Scale(1.0)
        .PersistSession(false)
        .PrintMode(PrintMode.AutoSelect)
)

 

 

How can I pass the datasoource as a parameter?

Neli
Telerik team
 answered on 11 Feb 2020
3 answers
1.8K+ views

I have html table stored on my database.

<table>

<tr>

<td>Name</td>

<td>Address</td>

</tr>

<tr>

<td>John</td>

<td>Tokyo</td>

</tr>

</table>

I created a sqlDataSource on Kendo Reporting and selected the htmlTextBox in order to render the my html code. However only the td element values are populated in a straight line like below

Name Address John Tokyo

I want this to be rendered in table format

Regards,
Kamal

 

Todor
Telerik team
 answered on 11 Feb 2020
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
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?