Telerik Forums
Reporting Forum
1 answer
80 views

hi, i am unable to find Telerik Reporting Q2 2013 ... i have search all over in my acount >product and subscription >trials> reporting > download > all production versions. there are only two production versions. 9.2 and 9.1 i want Telerik reporting q2 2013 7.1  version. please help or give me link or ftp so where i can download it directly..

 

 

thanks a lot.

Stef
Telerik team
 answered on 09 Oct 2015
3 answers
198 views
Hi, am converting my Crystal Reports to Telerik Reporting. The version am using is Telerik Reporting Q2 2013.

How to create multiple pie charts that sizes proportionally in the report? Am looking at creating Pie charts with two or more series ... and each sizes differently based on a sum / count. Its known as Proportional Multiple Pie Chart in Crystal Reports (see attached). Thanks.




Stef
Telerik team
 answered on 09 Oct 2015
1 answer
223 views

Hi
I am using Telerik Reporting  2013  in a WPF application.

I have ReportViewer inside on of my windows.

I would like to change the font size of the zoom control, since the font is to big the report generate another line to fit the control size.

Files are attached.

 

Thanks 

Ron

Stef
Telerik team
 answered on 09 Oct 2015
13 answers
1.2K+ views
I have a class library project named AssetProReport
which has Report1 file.

$("#reportViewer1")
            .telerik_ReportViewer({
                serviceUrl: "api/report/",
                templateUrl: '/ReportViewer/templates/telerikReportViewerTemplate.html', 
                reportSource: { 
                    report: "AssetProReport.Report1, AssetProReport.Report1",
                    parameters: {
                        CultureID: "en"
                    }
                }
});

Error.
Unable to get report parameters:
Report 'AssetProReport.Report1, AssetProReport.Report1' cannot be resolved.



Stef
Telerik team
 answered on 08 Oct 2015
1 answer
98 views

I'm changing my report parameter through NeedDataSource or ItemDataBinding events but these events are firing only once? Why? It fires only when the report is generated the first time.

The event looks like

private void rptKomplet_NeedDataSource(object sender, EventArgs e)

{

Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

this.sqlDataSource1.Parameters["@some_param"].Value = <here comes param from controller>;

report.DataSource = sqlDataSource1;

}​

 

Nasko
Telerik team
 answered on 08 Oct 2015
4 answers
198 views
I'm having a fairly serious problem getting the report to break after my group. When I set the group sections PageBreak = After, the report no longer generates! It just sits there for a long time showing the 'generating report', and then finally errors out with the following error:

Telerik.ReportViewer.WinForms.ReportViewerException: The ReportViewer control handle failed to create. 
   at Telerik.ReportViewer.WinForms.ReportViewerBase.OnRenderingComplete(RenderingThreadResult result, PostRenderArgs args) 
   at Telerik.ReportViewer.WinForms.RenderingThread.OnComplete(RenderingThreadArgs args, RenderingThreadResult result) 
   at Telerik.ReportViewer.WinForms.RenderingThread.ThreadFunc(Object o) 
   at System.Threading.ThreadHelper.ThreadStart_Context(Object state) 
   at System.Threading.ExecutionContext.runTryCode(Object userData) 
   at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) 
   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) 
   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) 
   at System.Threading.ThreadHelper.ThreadStart(Object obj) 

I thought it might be the report itself that was corrupted or something so I used the wizard to whip up a brand new report using the same data source, but I've still got the same problem.

The report is simply structured:

Group
        Data
        Data
Group
        Data

The grouping section is a single field, with only standard fields in the data, and it works 100% great - IF I don't specify the Pagebreak = After. It even works if I set PageBreak = Before, but then of course I get a blank page at the beginning of the report, which is crap.

To set the data for the report I'm just creating the report, calling the database and returning a generic dataset structured exactly the same as the report dataset, and the setting the report's datasource = to the returned data.

EDIT: I've also just tried setting the datasource in the NeedDataSource event handler, but it still sits there and crashes when I close the report viewer.

How do I get around this / fix this issue?


Stef
Telerik team
 answered on 08 Oct 2015
1 answer
209 views

Hi,

Is there a way to log report loading time in production environment when using Asp.Net Report viewer?

By the way I try to review IIs log file to get the request time and i found all reports urls comes with InstanceID and I can't to know which InstanceID related to which report

Nasko
Telerik team
 answered on 07 Oct 2015
1 answer
109 views

I am trying to add a new Report Viewing Window in my Visual Studio 2013 developed WPF application. I already have a report defined in a separate class library and now I am trying to use that report in my WPF app. I am trying to Add New Item and from the WPF category I choose "Telerik Report Viewer Window Q3 2015". I name it accordingly and then I am presented with a form to configure the source of the report. I choose Existing Report Definition. Once I select Existing Report Definition, the only option I have is "TRDX report definition created in Report Designer". The other option, "Type report definition created in Visual Studio" is not enabled. My report was created in the Visual Studio designer, so I would expect to use this option. There's a progress bar that says "Loading types...". I wait on it for close to a minute or so, hoping that it will find my report and it will allow me to select it. It doesn't because the Visual Studio crashes and then it reopens on its own. I need to reload the entire solution and basically start the whole process all over again.

 Does anyone else have the same experience and if you do, how did you solve it?

TIA,

Eddie

Stef
Telerik team
 answered on 07 Oct 2015
6 answers
897 views
Hello,

I have a table which is binded to a datasource,  which calls a function to get a list as the result[datasource = datasource.GetValues()]. I have a table to which I have binded this datasource.
Right now I have binded the datafields of the table to =Fields.Name, if the list has five names I see five pages.

The design of the report should be such that first item of the list should be in the first column, second item should be in the next column and so on....Please let me know how to so this.

Regards
Jess
Stef
Telerik team
 answered on 07 Oct 2015
1 answer
89 views

Hi

i am using HTM5 report viewer in MVC application.

Look in http://www.telerik.com/help/reporting/connecting-to-data-working-with-data-at-design-time.html .In the Data source available only at runtime section, it is said to mock your data just to enable the Report Designer to show any data schema. How can i mock my data?i don't want to add datasource Another question is that if assign a data source at design time,will NeedDataSource event of report will fire or not ? Please let me know.

Sabbir
Nasko
Telerik team
 answered on 07 Oct 2015
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?