The way Telerik is dealing with checkboxes in ReportViewer/ReportDesigner appears not to be up to the standard elsewhere in this excellent product. The only checkboxes available seem to be bluish bitmaps (or alternately our own graphics). Are there plans to make available the option to use a font-based checkmark (e.g. Wingdings)? I am working on a project that creates a printout that contains many, many checkboxes and the graphic checkboxes make for an ugly page. Alternate suggestions welcome, thanks.
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

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 .
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.
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

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)

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?
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.

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 INT324.{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