Telerik Forums
Reporting Forum
1 answer
377 views

I would like to add make a text bold , in preview mode of Telerik report designer works correctly but when I call the report in C# code to use it , I can't see any change and the bold style won't be applicable in C# application .

What's the reason??

Dimitar
Telerik team
 answered on 14 Oct 2021
1 answer
153 views
Hi,

I am new to Telerik reporting and I like the way we can host reporting server as REST service in .Net core.

I am evaluating Telerik reporting tools for the organization that I work for and we have some reports which has many graphical charts with heavy styling applied in MS PowerPoint so my question is -

Can we beautify overall report and clustered column charts  in Telerik report designer or by any other method so that it will look like the attached chart?
1 answer
192 views
Is there any way to adjust where in the report the Table of Contents prints? I have a report with a cover page and I want the cover page to print before the Table of Contents but I can't seem to figure out if that is possible
Dimitar
Telerik team
 answered on 13 Oct 2021
1 answer
873 views

I have a data source that contains dimension data. This data contains Width, Diameter, Weight, and other data.

I can filter the list to just show the Width, but I only want it to show the first Width (since they all happen to be the same). The Report Designer still creates a blank row in the report for every row after the first. I tried using 

= IIf(RowNumber()=1, Fields.DimensionInfo.Dimension, "")

How can I only show the first item? Or, how can I force the blank rows to not take any space?

Thanks!

Dimitar
Telerik team
 answered on 12 Oct 2021
1 answer
198 views

I'm migrating Telerik Winforms report viewer to WPF report viewer. How can I activate continuous scrolling in WPF viewer? Now I can only scroll inside one page and have to use navigation arrows to go to the next page. For me it is one of the basic features for report viewer and I would be very suprised if that wasn't possible...

I'm using "Telerik Reporting R3 2021" with .NET Framework 4.7.2

Dimitar
Telerik team
 answered on 12 Oct 2021
0 answers
165 views

Hi,

I have a report in which we have seven parameters for filtering the report data. If I clicked on any of the dropdowns without selecting any option, first it refreshes all the dropdowns and then I clicked on any other dropdown, then it shows blank data in the next dropdown. In between, I have not performed any other operation. Here I am attaching the screenshots of it.

Please provide a solution for this

 

Anamika
Top achievements
Rank 1
 updated question on 12 Oct 2021
3 answers
1.4K+ views
Good afternoon.
I'm trying to do conditional formatting for the last row in table on a page, but I can't figure out when a page break occurs. Is it possible to do this?

I can calculate the last row in the group and add conditional formatting like this:

= Exec ('groupID', Count (Fields.No)) = = RowNumber ()

But I do not know how to find out that the row is the last when moving to a new page.
Dimitar
Telerik team
 answered on 11 Oct 2021
0 answers
142 views

Hello,

I have a problem with handlig error msg.

The report is using WebServiceDataSource. When it returns  500 response - the pdf is generated with just a information with status code.

But there is other data delivered in response, with property logRef for example. I want to show this property on generated pdf.

How can I achive that ?

Thank you

0 answers
183 views

Hi ,

           we are creating dynamic report in that one of the columns contain 100 and above characters . so we set text wrap as true.

Result as 


If we set false for text wrap, then result as below

data not show as fully, 

Below the code that we create dynamic report Dim detailsTxt As New Telerik.Reporting.TextBox
                detailsTxt.Size = New SizeU(Unit.Inch(col.ColumnName.Length), Unit.Inch(0.2))
                detailsTxt.Location = New Drawing.PointU(Unit.Inch(iniLeft), Unit.Inch(0.01))
                detailsTxt.Style.Font.Size = New Unit(10)
                detailsTxt.Style.VerticalAlign = VerticalAlign.Middle
                detailsTxt.Style.TextAlign = HorizontalAlign.Left
                detailsTxt.TextWrap = False
                detailsTxt.StyleName = "Data"
                detailsTxt.Style.BorderStyle.Default = Telerik.Reporting.Drawing.BorderType.Solid
                detailsTxt.CanGrow = True
                detailsTxt.KeepTogether = True
                detailsTxt.Multiline = True
                ' detailsTxt.Format = Format("{0:n}")
               detailsTxt.Value = "=Fields.[" + col.ColumnName.ToString & "]"
                detail.Items.Add(detailsTxt)

What we expect 


Pls reply with any solution, we are using Telerik version is 11.1.7.614  , is it new version fixed this bug ?

Thanks.

M Kumar
Top achievements
Rank 1
Iron
Iron
Veteran
 asked on 11 Oct 2021
0 answers
138 views

After updating old version of Reporting to the newest we get an error:

An exception has occurred while processing 'TableContent' item:
System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
   at System.ThrowHelper.ThrowArgumentOutOfRangeException(ExceptionArgument argument, ExceptionResource resource)
   at System.Collections.Generic.List`1.get_Item(Int32 index)
   at Telerik.Reporting.Processing.Data.DataMember.<GetMembers>d__63.MoveNext()
   at Telerik.Reporting.Processing.GroupHierarchyWalker`1.WalkHierarchy(TGroup group, IDataMember parentData, Double distance, Int32 startIndex, Double& totalSize)
   at Telerik.Reporting.Processing.GroupHierarchyWalker`1.WalkHierarchy(IEnumerable`1 groups, IDataMember parentData, Int32 startIndex)
   at Telerik.Reporting.Processing.TableBuilder.Fill(IMultidimensionalDataSet resultSet)
   at Telerik.Reporting.Processing.Table.BindToData(IMultidimensionalDataSet result)
   at Telerik.Reporting.Processing.DataItem.ProcessItem()
   at Telerik.Reporting.Processing.Table.ProcessItem()
   at Telerik.Reporting.Processing.ReportItemBase.ProcessElement()
   at Telerik.Reporting.Processing.DataItem.ProcessElement()
   at Telerik.Reporting.Processing.ProcessingElement.Process(IDataMember dataContext)

 

This is happening when we add header to table

        protected void CreateSingleHeader(Unit columnWidth, string header, Table table)
        {
            Telerik.Reporting.TableGroup tableGroupColumn = new Telerik.Reporting.TableGroup();
            tableGroupColumn.Name = "Header1";
            table.ColumnGroups.Add(tableGroupColumn);
            table.Body.Columns.Add(new Telerik.Reporting.TableBodyColumn(columnWidth));
            var textboxGroup = new Telerik.Reporting.HtmlTextBox();
            textboxGroup.Style.Padding.Left = Unit.Cm(0.1);
            textboxGroup.Style.VerticalAlign = VerticalAlign.Middle;
            textboxGroup.Style.Font.Size = Unit.Point(10);
            textboxGroup.Value = header;
            textboxGroup.Size = new SizeU(columnWidth, Unit.Cm(1));
            tableGroupColumn.ReportItem = textboxGroup;
        }


 

Please advise how to resolve this issue?

Jan
Top achievements
Rank 1
 updated question on 08 Oct 2021
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?