Telerik Forums
Reporting Forum
3 answers
122 views
Is there potential support for 2D Matrix Barcode in the near future?  Is so, what is the timeline and is it going to be in the 2010 version?
Steve
Telerik team
 answered on 07 Sep 2011
1 answer
418 views
Reports version 5.1.11.713
I have a basic table layout report.  If I run the SQL directly in SQL Server it takes 1 second to return 15,852 rows.  If I attempt to run this via a report it times out.  I have increased the timeout to 120 and it still times out.  Why is this happening when the SQL itself only takes a second?  I understand it will take some additional time to pull all that data back and construct objects in memory but it shouldn't take that long.  I just downloaded a trial version of DataDynamics Reports and the same exact report with that engine loads all 378 pages in under 15 seconds.
Peter
Telerik team
 answered on 07 Sep 2011
1 answer
37 views
Is it possible to change the background of the silverlight viewer (space behind the report) to a different color?
Peter
Telerik team
 answered on 07 Sep 2011
0 answers
139 views
Hi guys,

I have a business request of being able to generate reports from images or pdfs and add watermarking or custom texts to the reports that will finally be printable/exportable in pdf on the web.

I was wondering if it's possible to do so and would like some input from the forums on whether the reporting tool is a good solution for such a request. ( This is because I would like to use of the wonderful reporting viewer control for preview/printing/exporting to pdf)

A typical scenario would have probably a list of image files or mutliple pdf files ( with many pages inside) where I would like to add to the report which would definitely have a header/footer custom text and needs to have a watermark imprint on the report itself. The size of the image is not fixed and will need to be resized to fill up 1 typical report page

If its possible to do so, can someone direct me with some form of pseudo code or code samples especially in the part where I iterate through the pages in the pdf to add to the report.

If its not possible to do so, can someone direct me to any good telerik control from the asp.net ajax suite that might be able to perform what I just listed above. - or any other 3rd party tool.

I have been using Telerik reporting for all our business requirements and would prefer to continue doing so and would like some help with how I can include all the pages in the pdfs or a List<image> into the report as well as defining the size of the image to fit nicely in a portrait A4 size when being printed.

Regards

Jonathan





Jonathan Zee
Top achievements
Rank 1
 asked on 07 Sep 2011
2 answers
239 views
Hello, I am using telerik reporting version q3 2010 with VS 2010, I am getting an out of memory error with Telerik report with 3000  records, The stored procedure from backend takes approximately 2-3 sec to retrieve the data. Please help. It says type initializer for system.web.UI.htmltextwriter threw an exception,  I have one group and some calculated values at reporting footer. On detail section I have the data fields, no heavy calculation


I have about 17 reportparameters, and I get this error when trying to preview from the designer as well as from codebehind below. I f I limit the output  records to 10 it renders perfectly, we were using crystal reports for the same report w/o any issues but decided to migrate to telerik reporting.  

Please help.

 

 

Dim report1 As New ReportLibrary.test1

report1.ReportParameters(
"parameter1").Value = "NE"
.....................................
.........................................
report1.ReportParameters("parameter17").Value = "test2"

 

 

 

 

 

 

Me.ReportViewer1.Report = report1

 

 

 

 
Shravan
Top achievements
Rank 1
 answered on 06 Sep 2011
1 answer
69 views
I created a Master-Detail report and I would like to suppress the printing of the detail header when there are no records for the master record.  How can I do this?


Thanks.


IvanDT
Telerik team
 answered on 06 Sep 2011
1 answer
85 views
I want to create a report that shows records for a particular time period.  How can I specify the filter criteria using VB.Net code for a report if I want to show records that fall within the following date range: January 1, 2011 to June 30, 2011?


Thanks.


 
IvanDT
Telerik team
 answered on 06 Sep 2011
1 answer
177 views
It is userObjectDataSource (IList<User> GetUsers())  as report DataSource. Also it is a List in details report section and it is an ObjectDataSource  (IList<string> GetPrivileges(int userId)) as DataSource for this List. How can I set UserId from userObjectDataSource  as value for parameter of ObjectDataSource? I tried ObjectDataSource->Parameters->Value-><Expression>->Fields, but  - No Data Source found. It should be one list of privileges for each user. Implementation through SubReport incorrect displayed after export in to PDF or TIFF. Can you help me?


Peter
Telerik team
 answered on 06 Sep 2011
3 answers
409 views
I'm trying to create test report with chart and here what I have:
this.chart3.BitmapResolution = 96F;
this.chart3.ChartTitle.Appearance.Visible = false;
this.chart3.ChartTitle.Visible = false;
this.chart3.DataSource = this.sqlDataSource2;
this.chart3.DefaultType = Telerik.Reporting.Charting.ChartSeriesType.Pie;
this.chart3.ImageFormat = System.Drawing.Imaging.ImageFormat.Emf;
this.chart3.Location = new Telerik.Reporting.Drawing.PointU(new Telerik.Reporting.Drawing.Unit(0D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(7.800079345703125D, Telerik.Reporting.Drawing.UnitType.Inch));
this.chart3.Name = "chart3";
chartMargins5.Bottom = new Telerik.Reporting.Charting.Styles.Unit(1D, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
chartMargins5.Left = new Telerik.Reporting.Charting.Styles.Unit(1D, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
chartMargins5.Right = new Telerik.Reporting.Charting.Styles.Unit(24D, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
chartMargins5.Top = new Telerik.Reporting.Charting.Styles.Unit(1D, Telerik.Reporting.Charting.Styles.UnitType.Percentage);
this.chart3.PlotArea.Appearance.Dimensions.Margins = chartMargins5;
this.chart3.PlotArea.XAxis.MinValue = 1D;
chartSeries1.Appearance.LegendDisplayMode = Telerik.Reporting.Charting.ChartSeriesLegendDisplayMode.ItemLabels;
chartSeries1.Appearance.ShowLabelConnectors = true;
chartSeries1.DataLabelsColumn = "Department";
chartSeries1.DataYColumn = "TotalJobs";
chartSeries1.Name = "Jobs";
chartSeries1.Type = Telerik.Reporting.Charting.ChartSeriesType.Pie;
this.chart3.Series.AddRange(new Telerik.Reporting.Charting.ChartSeries[] {
chartSeries1});
this.chart3.Size = new Telerik.Reporting.Drawing.SizeU(new Telerik.Reporting.Drawing.Unit(5.7999601364135742D, Telerik.Reporting.Drawing.UnitType.Inch), new Telerik.Reporting.Drawing.Unit(2.8998820781707764D, Telerik.Reporting.Drawing.UnitType.Inch));
Result attached in TelerikReports-chart file.

My questions:
1) How I can fix data labels? Right now some of them overlay other. See "Human Resources" and "Healthcare" at the bottom of img.
2) I want to display numbers in data labels and text in legend. For example "Sales/Marketing" should be replaced to 60, but legend should be the same.

Thanks
Chavdar
Telerik team
 answered on 06 Sep 2011
5 answers
561 views
I am exporting a report to MHTML in order to insert it in a email. Although the export is working, I could not find a way to include it in the email body using the MailMessage class of the framework . net. Could anyone help me in this issue?
Chavdar
Telerik team
 answered on 06 Sep 2011
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?