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?

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

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();
}
});
});
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
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.

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


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.
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?
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
