Telerik Forums
Reporting Forum
3 answers
275 views

Hi All,

I am passing a GUID value as one of the parameters in UriReportSource parameters collection and I get the report loaded correctly. From the documentation, it seems GUID is not a valid type for the parameter. I am confused as to why the report loads correctly without throwing an error if GUID is not a valid type or am I wrong in any way?

Many Thanks

Katia
Telerik team
 answered on 13 Jul 2017
7 answers
592 views

hi team,

please let me know how to create pie chart in telerik reporting , where on clicking of certain portion it should be in below two pie chart,

first chart will show highlighted portions displayed separately and in the second chart only that particular piece should show(like cake piece).I have attached the required format .

Stef
Telerik team
 answered on 12 Jul 2017
1 answer
70 views

hi Team,

we need your help to implement below line item in telerik reports

 

1)waterfall model chart 
2)need to view PDF in the report viewer.

Stef
Telerik team
 answered on 12 Jul 2017
6 answers
959 views

I have a column in a report that hold a small circle.  I determine the fill color of the circle dynamically with database fields.  The width of this column is static and I can center the circle horizontally.  The height of the rows, however, is dynamic and I cannot get the circle to center on each row.  The circle always seems to be at the top of the row instead of directly in center.  Is there something I am missing to center this vertically?  The vertical align property doesn't seem to work for me.

Other Info:  1.  On this report, I am not using a table.  I am using text boxes and report groups.  Maybe the shape needs to be in a panel?

                   2.  The shape is being used as a subreport on the main report.  Do I need to center the sub report on the main report?

Your help is appreciated.

Thanks,

Phil

Katia
Telerik team
 answered on 12 Jul 2017
1 answer
132 views

Hi all,

I am new user and I have issue with page break.

 I am trying to create a report with crosstab but I can not pagebreak it.

How can I break the crosstab?

Are not Page breaks supported in a Crosstab item?

I am using Telerik Reporting R2 2017 SP1 (version 11.1.17.614)

Katia
Telerik team
 answered on 12 Jul 2017
1 answer
688 views

We're trying to export our report as a PDF. We have some HTML pages that go along with the report.

Is it possible to render these pages with the report? If yes, what some ways to achieve this?

 

Stef
Telerik team
 answered on 11 Jul 2017
9 answers
900 views
Hi Telerik Team,

Can you please advise me how to position these labels on top of the Y-Axis in a way so as they do not overlap each other when the corresponding value of the Y-Axis is too small. See the screenshot for details.

Please note that I am building the chart programatically and setting the AutoLayout to True.

Thank you!
Navnit
Stef
Telerik team
 answered on 11 Jul 2017
1 answer
310 views

Hi all,

I need to create exactly like this report format shown from the attachment.

Is there any tutorial on how to create this kind of report?

My report need to be 11 rows x 4 column. So maximum is 44 data in 1 page.

I'm using Telerik Reporting Q2 2015 - 9.1.15.624

Please help.

Katia
Telerik team
 answered on 11 Jul 2017
5 answers
266 views
I have a list of reports that quantity should be dynamic, however I can not send via parameter to the BOOK to know how many AddReports (method) should go.

My MVC html PAGE constructor
1.var typeReportSource = new TypeReportSource() { TypeName = typeof(Tegma.CSA.TelerikReportLibary.Saida.ProtocoloBook).AssemblyQualifiedName };
2.int count = 0;
3.foreach (int itemId in myListInt32)//MY LIST INT32
4.{
5. typeReportSource.Parameters.Add("reports(" + count + ").protocoloId", itemId);
6. count++;
7.}

@(Html.TelerikReporting().ReportViewer()
 .Id("rptProtocolo")
 .ServiceUrl(Url.Content("~/api/reports"))
 .ReportSource(typeReportSource)
 .ViewMode(ViewMode.PrintPreview)
 .ScaleMode(ScaleMode.Specific)
 .Scale(1.0)
 .PersistSession(false)
 .PrintMode(PrintMode.AutoSelect)
)

 

MY BOOK CONSTRUCTOR

public ProtocoloBook()
{
 List<int> myListInt32 = new List<int>();//MY FAKE LIST - NEED WITH PARAMETER
 myListInt32.Add(2000108);
 myListInt32.Add(2000111);
 AddReports(myListInt32);
}
void AddReports(List<int> listaIdProtocolos)
{
 for (int i = 0; i < listaIdProtocolos.Count; i++)//Add equivalent with list receive
 {
  var typeReportSource = new TypeReportSource() { TypeName =   typeof(Tegma.CSA.TelerikReportLibary.Saida.ProtocoloRetirada).AssemblyQualifiedName };
  this.ReportSources.Add(typeReportSource);
 }
}

Any way to get in the constructor Make a list of Id's that I should generate the reports?

If possible with example
Thank you
Gustavo
Top achievements
Rank 1
 answered on 10 Jul 2017
4 answers
358 views

Hi I have some Issues with an expression that should be working but its instead outputting an empty result and I'm sure it should be working because it actually works for 1 of the 4 tables I'm printing on the report but not for the other 3.

the expression is the following: 

=IIf(Fields.BankMovementType = "TRANSFER", Exec("table1",Sum(NetPayment)),"")

which makes use of this calculated field:

NetPayment (Double) =IIf(Fields.BankMovementType = "TRANSFER", (Fields.Perception -  Fields.Deduction),0)

this actually gives me a sumatory of the NetPayment for all the "TRANSFER" movement types and leaves out the rest of the movement types, now I have tested this Expression multiple times and it works perfectly, however it only seems to be calculating for the "TRANSFER" movement type, in one table only. 

the other tables for the different forms of payment use the exact same formula, the only thing that changes is the condition:

=IIf(Fields.BankMovementType = "EFFECTIVE", Exec("table5",Sum(NetPayment)),"")

NetPayment (Double)  =IIf(Fields.BankMovementType = "EFFECTIVE", (Fields.Perception -  Fields.Deduction),0)

however this time around the field that is supposed to contain the sumatory is completely empty and I simply don't understand how this is possible, I know the parameter and the settings for the tables are exactly the same as I just copied and pasted the table and simply changed the condition for each different table.

I have also tried changing the expression to something like:

=IIf(Fields.BankMovementType = "EFFECTIVE", Exec("table4",IIF(NetPayment > 0,Sum(NetPayment),"")),"")

but it still shows empty and I just simply don't understand what is wrong with it, it doesn't even give any errors, it just simply doesn't do what its supposed to do...

I have attached images of the resulting tables to better understand what I'm trying to say, the first one is from the table that actually works and the second one is form the one that doesn't do its job. The final image is a picture of how they are structured on the designer.

 

 

seth
Top achievements
Rank 1
 answered on 07 Jul 2017
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?