Telerik Forums
Reporting Forum
1 answer
114 views

In a report book  in html viewer is it possible to apply page transitions when moving from one page to another for powerpoint style presentations ?

Thanks.

Nick.

 

Katia
Telerik team
 answered on 11 Oct 2016
1 answer
116 views

Hello,

 

for a report a like to have a dropdown box with values to choose from.

 

According to examples I put the following code in the constructor:

ReportParameters["Agent"].AvailableValues.DataSource = new object[];

ReportParameters["Agent"].AvailableValues.ValueMember = "Fields.Item";

ReportParameters["Agent"].Visible = true;

ReportParameters["Agent"].Type = ReportParameterType.String;

 

When I compile it shows the report with a textbox on top.

 

Now when I change the code to:
ReportParameters["Agent"].AvailableValues.DataSource = new object[] {"test"};
ReportParameters["Agent"].AvailableValues.ValueMember = "Fields.Item";
ReportParameters["Agent"].Visible = true;
ReportParameters["Agent"].Type = ReportParameterType.String;

 

and I try to open the report it says:

Object reference not set to an instance of an object.

 

Source: Telerik.ReportViewer.Wpf.

I use Telerik Reporting Q2 2015.

I've loooke dover everuthing but I guess still mssing something.

 

Andy direction would be appreciated.

 

Kind regards

 

Jeroen

Jeroen
Top achievements
Rank 1
Iron
Iron
 answered on 11 Oct 2016
2 answers
322 views

continue this thread:Is there any way to export reporting as JPEG?

I create a sample project that will occour the same exception.
(Admin: The link is removed due to violation of Telerik Reporting License agreement for DEV assemblies distribution. Please, use the support ticketing system to submit demo projects.)

Thanks.

 

Peter
Telerik team
 answered on 10 Oct 2016
2 answers
247 views

Hello all!

I've got a class tied to a report that I'm building, and 3 of the properties are City, State, and Zip.  Zip is not currently sent over with a dash, just the 5-9 numbers.

I want to format zips on my report longer than 5 characters as "99999-9999", and Zips that are 5 characters "99999".  Fairly basic stuff.  I am also combining the City, State, and Zip of my report into 1 text box.

I'm trying to get cute (which is always dangerous), but I'm hoping someone can explain why this code throws a 'Specified argument was out of the range of valid values. Parameter name: startIndex' when I go to preview the report.  If I don't have more than 5 characters, I don't want it doing the insert.  Since the 'test data' is empty (as I'm just previewing the design), it shouldn't be evaluating the Insert I wouldn't think.

=Format("{0}, {1} {2}",Trim(Fields.City), Fields.State, IIf(Len(Fields.Zip)>5, Insert(Fields.Zip,5,"-"),Fields.Zip))

Thanks for any info!

Amanda
Top achievements
Rank 1
Iron
 answered on 07 Oct 2016
3 answers
62 views

I am using Q3 2015 SP1 (telerikReportViewerTemplate-9.2.15.1105). Reports are working fine on 100% zoom (100zoom.png) in HTML5 Report Viewer. But whenever I try to zoom out, last few characters of column truncates from right side(zoomout.png). Please suggest a solution.
Katia
Telerik team
 answered on 07 Oct 2016
1 answer
426 views

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

Stef
Telerik team
 answered on 07 Oct 2016
4 answers
566 views

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

 

                            

 

 

 

saravana
Top achievements
Rank 1
 answered on 07 Oct 2016
3 answers
629 views

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.

Stef
Telerik team
 answered on 05 Oct 2016
1 answer
193 views

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

Katia
Telerik team
 answered on 05 Oct 2016
8 answers
372 views
Hello team,

i try to print a Reporbook from 3 trays under C# in one printjob. Such as
  • page 1 <- tray 2
  • page 2 <- tray 3
  • page 3 <- tray 4
Is it possible?

I can print them all from custom trays in different jobs without problems, but i need them all in one printjob because the printer have a stitcher to bound the document. How can i assign the printjob with more then one printerSettings?

My way now:
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); 
 

To print the reportbook from custom tray i can
printerSettings.DefaultPageSettings.PaperSource = printerSettings.PaperSources[7]; 
How can i get it from differen trays?

Hope someone can help me.


RPI Bumper to Bumper Auto Parts
Top achievements
Rank 2
 answered on 05 Oct 2016
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?