Telerik Forums
Reporting Forum
2 answers
135 views
Hi,

I am new to Telerik reporting.  I am using Telerik Q1 2015. I am facing three problem in Telerik reporting

"Target Image.bmp" shows the target report that I want to make in Telerik reporting. (It was made in excel)

1) While exporting to Excel I am not able to export image as shown in "Result Image Excel.bmp"

2) I want to fix the size of detail section to size of 6 items as shown in "Target Image.bmp" but it size reduced when item reduce as shown in "Result Image.bmp"

3) I want watermark image to appear only once in detail section as shown in "Target Image.bmp" but it appear as many time as the quantity of items as shown in "Iteration Image.bmp"

"Report Image.bmp" shows how I made the report. Please help that how can I achieve the report as shown in "Target Image.bmp"
Nasko
Telerik team
 answered on 03 Aug 2015
1 answer
104 views

I have my  Report in MVC and displaying the report in IFrame. I have search Fields Parameters and In report I want to use those fields. 

Means my main point to is to send the value from MVC view to  Report Backend code. I think it should be something by setting report parameter. 

But I do not how? I have set for help. 

I need urgent help.

Nasko
Telerik team
 answered on 03 Aug 2015
1 answer
153 views

I am using telerik reporting(Q2014) for my web application:

here is my database tables

setNO           Names                  salary         

1                  Girmay                   5000

1                  Genet                      5000

2                 Kenenisa                   5000

2                 Lemlem                   4000

2                  Abebe                    4000

3              Melat                          6500

3               Haile                           6500

now i want to display this using crosstab telerik, and so that i can avoid repetitions of data. it works for me  likes

setNO  salary   Names

1            5000     ...here namelists

2            4000       here name list

3       65000    here name lists

but i want to make on this order

setno  Names   Price

i cannot add row groups to the right side of the table, it only works on the left side?

could help me please? i new for telerik

Stef
Telerik team
 answered on 03 Aug 2015
1 answer
99 views

Hi,

 I am trying to display new graph using the Telerik.Reporting.Graph tool on each page of the report. Each page is displaying the grades of a particular student. So how do I get the bar chart to display the correct graph for each student on the page. Currently it is just showing the same graph on every page and the values are not changing according to the student id displayed at the top of every page. 

 (I am using C# in Visual Studio)

 Thanks!

 

Nasko
Telerik team
 answered on 03 Aug 2015
2 answers
82 views

Hi All

 I have a report that uses a subreport to display a series of questions (1-24), just using a detail section (not a table).

Each one of these questions has up to five checkboxes for further options that have been selected.

They each have different labels as well depending on which question it is.

 I have managed to get out the question no on the detail_ItemDataBinding event and the report works fine but..

I want to reference the 5 checkboxes for each particular question, hiding the ones not required and changing the text value for those in use??

 

Cheers

Ade

Nasko
Telerik team
 answered on 03 Aug 2015
1 answer
241 views

Hello,

 

I create a Report on runtime with ;

 

for (int i = 0; i <= ds.Tables[0].Columns.Count - 1; i++)
            {
                var tableGroupColumn = new TableGroup();
                tableGroupColumn.Name = i.ToString();
                table1.ColumnGroups.Add(item: tableGroupColumn);
 
                txtGroup = new HtmlTextBox
                               {
                                   Size = new SizeU(Unit.Inch(2.1), Unit.Inch(0.3)),
                                   Value = ds.Tables[0].Columns[i].ColumnName,
                                   Style =
                                       {
                                           BackgroundColor = System.Drawing.Color.FromArgb(59,100,141),
                                           Color = System.Drawing.Color.White,
                                           BorderStyle = { Default = BorderType.Solid },
                                           TextAlign = HorizontalAlign.Center,
                                           VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle,
                                           BorderColor = { Default = Color.Black }
                                       },
                                   StyleName = "Corporate.TableHeader",
                               };
                tableGroupColumn.ReportItem = txtGroup;
 
                txtTable = new HtmlTextBox()
                               {
                                   Size = new SizeU(Unit.Inch(2.2), Unit.Inch(0.3)),
                                   Value = "=Fields.[" + ds.Tables[0].Columns[i].ColumnName + "]",
                                   //Value = data.Rows[rowIndex][i].ToString(),
                                   Style =
                                       {
                                           BorderStyle = { Default = BorderType.Solid },
                                           TextAlign = HorizontalAlign.Center,
                                           VerticalAlign = Telerik.Reporting.Drawing.VerticalAlign.Middle,
                                           BorderColor = { Default = Color.Black }
                                       },
                                       StyleName = "Corporate.TableHeader",
                               };
 
                table1.Body.SetCellContent(0, columnIndex: i, item: txtTable);
                //rowIndex++;
                table1.Items.AddRange(items: new ReportItemBase[] { txtTable, txtGroup });
            }

and i want to add a Total with sum function but i cant do this.

Nasko
Telerik team
 answered on 03 Aug 2015
4 answers
229 views

Hi Telerik,

 

Recently, we've been experiencing timeouts in our reports, where can we do the configuration of the prolong timeout limit? Can we do it via HTML Viewer, or the Reports API or the Report itself??

Thank you...

Efren
Top achievements
Rank 1
 answered on 03 Aug 2015
13 answers
1.1K+ views

The reports work great in vs2005 but when i uploaded this change to my webstie and add all necessary references to the bin directory the report viewer doesn display reports 
the viewer is there but all the buttons show up as missing images

anyhelp with this would be great. I am using Q2 2007 reporting and i have added 

  • Telerik.Reporting.dll
  • Telerik.Reporting.Processing.dll
  • Telerik.Reporting.Interfaces.dll
  • Telerik.ReportViewer.WebForms.dll

and the charting dll to the bin folder

regards

Brad

Rahul
Top achievements
Rank 1
 answered on 02 Aug 2015
4 answers
738 views

Hello,

I am using the standalone designer and displaying reports on the web.

 In the standalone designer the table cell looks OK with text vertically aligned in the middle.  (First example in attached image.)

 On the web the bottom half of the cell cuts off (Second example in attached image.)

 Also, if I try and add padding on the left of the table cell, the cell shrinks in width by that amount and starts cutting off the right side of the cell (Third example in attached image.)

 When I export these reports to PDF it displays properly (same as in Report Designer).

Any thoughts here?

Jeff
Top achievements
Rank 1
 answered on 31 Jul 2015
3 answers
71 views

Hi all,

i'm working on C# , Silverlight with MVVM concept , I'm using Silverlight Report viewer to print or print preview the reports .

this report viewer is calling by using the wcf services here my report is loading slowly I checked with fiddler and found that the service is calling the service is calling  4 times here I have attached the image of that and piece of code how I implemented. i'm thinking because of calling 4 time the report is loading slowly .And here is a question can we use  HTML5 report viewer instead of Silverlight Report Viewer ? does this work fast compare to Silverlight report engine?.

 

Thanks

Prashanth.

 

 

Stef
Telerik team
 answered on 31 Jul 2015
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?