When using the "Telerik MVC Report Viewer View..." template from within Visual Studio 2015, the wizard properly shows the reports created within the attached Kendo Reports Library project. However, none of the reports show when using the same wizard within Visual Studio 2017.
This required me to keep the VS 2015 and VS 2017 applications and flip back to VS 2015 just for this purpose.
Ant way to make it work within VS 2017?
Hi,
I export telerik report to pdf file but data not show fully rows.
for export excel show normal.
This report use sub report and problem row on this sub report also

I would like to share an example of how to create Gantt chart using, both the Telerik Reporting.Chart and Telerik.Reporting.Graph controls. Hopefully, this example can help someone.
https://dl.dropboxusercontent.com/u/104610572/ReportTest.zip​


Hello!
I implement Telerik report with .TRDX and need to export data with excel file. I looked at report processor programming and do logging time when report processing before and after RenderReport
bool result = reportProcessor.RenderReport("XLS", uriReportSource, deviceInfo, this.CreateStream, out documentName);
It is Very slow when teleirk callback to write file in my resource but still work in local
and then I deploy to azure site. it's processing 2-3 minutes and show error 500 time out later.
Have anyone can help about this issue?
Thanks,
KT

Can Telerik report tool for HTML5 work with ASP.NET Web Forms using a Master page?
When I try the report does not display inside of the asp:Content, it displays on top of it. Writing over some of the other content of the page.
Hi Experts,
I need to have a report break AFTER the PathwayId changes. I
have used 2 queries/reports to get the desired results:
For the Header/Footer of the report which shows the Title,
Description, Date and Score of each Pathway I used:
SELECT DISTINCT r.PathwayId, p.Title, p.Description, s.Score, CONVERT(Varchar(10), s.CreateDate, 101) AS [Date]
FROM ucare.Responses r
INNER JOIN ucare.RiskScores
s ON s.ScheduleId = r.ScheduleId
INNER JOIN ucare.Pathways p ON p.Id = r.PathwayId
WHERE r.ScheduleId = @Enc AND PathwayId IN (Select DISTINCT PathwayId FROM ucare.Responses
WHERE r.ScheduleId = @Enc )and Score = (SELECT MAX(Score) FROM ucare.RiskScores
WHERE ScheduleId = @Enc)
GROUP BY r.PathwayId, p.Title, p.Description, s.Score, s.CreateDate
ORDER BY r.PathwayId, p.Title
For the Detail section Sub-Report that will have the Questions and Answers per each Pathway I have used:
SELECT PathwayId, d.Label AS Question,
CASE WHEN Text = 'False' THEN 'No'
WHEN Text = 'True' THEN 'Yes'
ELSE Text END AS Answer, CONVERT(Varchar(10), EntryDate, 101) AS Entered
FROM ( SELECT p.PathwayId, p.Text, p.EntryDate, p.DecisionInputId,
MAX(p.EntryDate) over (PARTITION BY p.PathwayId) AS Entered
FROM ucare.Responses p
WHERE p.ScheduleId = @Enc) t
INNER JOIN ucare.DecisionInputs
d ON d.Id = t.DecisionInputId
WHERE EntryDate = Entered
ORDER BY PathwayId
I’ve placed this report in the detail section with approximately 50 other sub-reports linked with the report parameters of @CaseNum and/or @Enc.
The diagram below is showing what I
need this report to output:
Pathway_1_Title Date_Entered
Question_1 Answer_1
Question_2 Answer_2
Question_3 Answer_3
Pathway_1_Description Score
Pathway_2_Title Date_Entered
Question_1 Answer_1
Question_2 Answer_2
Question_3 Answer_3
Pathway_2_Description Score
Pathway_3_Title Date_Entered
Question_1 Answer_1
Question_2 Answer_2
Question_3 Answer_3
Pathway_3_Description Score
Any help or guidance will be appreciated. If you need anymore info please do not hesitate to ask.
Thank you,
Jack Willhoite

I get this after upgrading to the latest reporting DLL's from RC1. I know this is a breaking change according to the following:
http://www.telerik.com/support/kb/reporting/details/telerik-reporting-r3-2016---upgrade-issues-with-objectdatasource-component
but I do not know where to put the information. I've tried the app.config, web.config but I still get the message. My project is using an HTML5 viewer in a .Net Core view and I just can't quite get it to work properly.
Thank you for any assistance,
Scott

I would separate every slice of the graph with a black line. How can I do it?
Thanks,
Angelo
