Hello,
May be I'm asking already answered question but at the moment I'm frustrated in this point and can't find a solution to this.
I have designed a report. My report's Page Header section is pretty large and I have placed two panels in it. The first panel is visible only on First Page and second panel is visible on every pages, which is running perfectly.
I'm hiding the first panel using Conditional Formatting on every page except first page. My problem is that, it occupies the space on every page when it hides. I want to shrink that space when the panel is hide.
I can not use Group Header instead of Page Header because I need to show PageNumber and PageCount in my header section, which will not be accessible in Group Header.
Hope my question makes sense.
Thanks,
Jameer
Hi Friends,
I need to create a telerik report table with dynamically with grouping and subtotal under the table. I succeed but the achive the dynamic table with dynamic coloumns and also in grouping. but grouping came as this format only. How i bring my desired output and how to add subtotal under each groupings. pls help
Hi
I've got a problem with clearing data sources with the reporting framework. I dynamically create parameters with multi value data sources (csv datasources) for the report and that works fine.
When I import the report with reportPackager.Unpackage(targetStream); I am unable to remove the CSV data source with code. Even if I delete the parameter that is linked to the csv datasource it does not get removed from the designer and is still displayed in the designer.
Is there a way to remove Data sources that are linked to parameters.
Thanks.
Help request on a Pie Chart.
I have a crosstab report that I wish to add a pie chart into. I know how to do this.
The question is how to filter the pie chart to only show certain values?
The report shows the count of customer complaints per category. The goal is to show a pie chart that shows there where a total of X complaints logged per customer. Of the X complaints only Y qty are of a certain category.
Basically trying to build a radial gauge so that we can track there certain categories.
Anyone have a sample or ideas I could look at? It must be possible...just very new to this.
Thanks,
Brian

| var reportProcessor = new ReportProcessor(); |
| var printerSettings = new PrinterSettings { PrinterName = printer }; |
| Report1 report1 = new Report1(); |
| FillReport1(); |
| Report2 report2 = new Report2(); |
| FillReport2(); |
| Report3 report3 = new Report3(); |
| FillReport3(); |
| ReportBook reportBook = new ReportBook(); |
| reportBook.Reports.Add(report1); |
| reportBook.Reports.Add(report2); |
| reportBook.Reports.Add(report3); |
| reportProcessor.PrintReport(reportBook, printerSettings); |
| printerSettings.DefaultPageSettings.PaperSource = printerSettings.PaperSources[7]; |
I need to format some text with codition, but it fails
{IIf(Fields.UiModel.IsCompany = "Yes", =Format("{0} {1}", Fields.UiModel Fields.UiModel.Customer.Firstname,Fields.UiModel.Customer.Surname), Fields.UiModel.Customer.Companyname)}
The problem is in the format, but i can not get this to work...
I need some expert on this
I get this error
An error has occurred while processing Report 'Factuur':
textBox18.Value expression [{IIf(Fields.UiModel.IsCompany = "Yes", =Format("{0} {1}", Fields.UiModel
Fields.UiModel.Customer.Firstname,Fields.UiModel.Customer.Surname), Fields.UiModel.Customer.Companyname)}] is not valid:
Error evaluating embedded expressions: Unexpected token inside an expression at index 57
I've created a report in Designer, and am trying to pass the data within the ASPX code behind to the ReportViewer. This page acts as if this event exists, but my ReportViewer object doesn't have it listed in intellisense. The ReportViewer object doesn't even seem to have a DataSource object even though I see it mentioned here.
The only details that I can tell apply to what I'm using are How to: Set ReportSource for Report Viewers and ReportViewer Members. I see that I can set the designer file and the parameters, but nothing about passing the connection string or select statement/SPROC.
So can you only use Data Connections within Telerik Report Designer, and not pass them from the code behind, when using "HTML5 ASP.NET Web Forms Viewer."
I believe the attached pictures below explains everything. I have reports on our website and the numbers displayed on the web page do not match when the user exports them to the PDF view. When exporting to a CSV file I get different values from both the web page and the pdf.
Hello,
I am working on a report that should contains multiple tables with four columns. Each table is bound to a collection of the following data:
Class{
public string item1 {get; set;}
public string item2 {get; set;}
public string Description1 {get; set;}
public string Description2 {get; set;}
}
The cells of the first and second column should be merged when Item2 is an empty string. The same for the Description columns. I tried to adjust the TexBox sizes using the ItemDataBound events but this does not work. The column is rendered as wide as the largest text box.
The output should look like this:
Item1 Item2 Description1 Description2
Item11111111 Description11111111111111
Item1 Item2 Description1 Description2
Item1 Item2 Description1 Description2
Item11111111 Description11111111111111
Any help would be appreciated.
Regards,
Bert
