Telerik Forums
Reporting Forum
1 answer
677 views
Hi Friends,

I ahve a report which is 10 columns wide.The problem is that though the report loads with a little delay....and when it loads and i Try to
use the scoll bar of the report viewer to drag to other columns it starts to render again for a long time ...and then i am able to use the whole report after some time..Why is it doing like that?

PS:  There is a warning on My reprot deisgn..Saying that report is to wide to fit on a single page...Does this have  anything to do with my problem..Please guide me...Thank you
Steve
Telerik team
 answered on 11 May 2012
1 answer
84 views
Hi,

I have been given a project which has a lot of reports in Q2 2009 .cs file format. I am not sure if it is even the correct format but the reports work well with the Q2 2009 designer in VS 2010.

When I tried to upgrade to Q1 2012 it only upgrades some .resx files and the .cs files no longer work, they can't be edited. Is there a special procedure I should follow? Any tips?

Thank you.
Steve
Telerik team
 answered on 11 May 2012
3 answers
132 views
Dear Telerik team,
      
         I am getting the following error  while rendering a report using silverlight Teletik report Q2 2011 which has chart control. the happens only some times while chart series is more . 
     
Error Message:   "An error has occurred while processing Chart 'chartGeneric': Image could not be created Page"

 The happens only some times in the client environment . and cannot be reproduce locally . To fix this issue we need to restart the IIS. then it works fine late the same issue repeats. Please find attached screen shot .

Thanks.

regards,
Kiran
Steve
Telerik team
 answered on 10 May 2012
2 answers
282 views
hi , how can i change my telerik report language to be in french ? i am trying to change cultur in reportviewer but it not work .

//// Set the language for static text (i.e. column headings, titles)
      Thread.CurrentThread.CurrentUICulture = new CultureInfo("fr");
      //// Set the language for dynamic text (i.e. date, time, money)
      Thread.CurrentThread.CurrentCulture = new CultureInfo("fr");

thank you ..
Sofiene
Top achievements
Rank 1
 answered on 10 May 2012
1 answer
568 views
Hi ,

I am using the following function to count the number of CUstomers who are Of type Daily.
=Count(IIf(Fields.CustomerType = 'Daily', 1, null))

I am using this in the expression field of a Textbox...But the problem is that the count is diffreneting from the count in the database by 1 record... say if i am getting 94 records in sql databse the count in the report is 93 ...This happening for all types..Am i doing anything Wrong..Thank you

PS: i  am using a table wizard to generate my rows and then in order to show the count i am doing the following

Insert rows->Outsie the group-below-- and here in this row i am  using the count function..

Does this make any difference...
Massimiliano Bassili
Top achievements
Rank 1
 answered on 10 May 2012
2 answers
253 views
Hi ,

I am using a table wizard to generate my columns and  Later on I am inserting a row outside the group below the table for various reasons.

The problem is that when i try to reduce the height of this row its shring all the rows above it...How can i stop doing it...
I just want the height of the Row which is outside the group to shrink to the size i want...

Thank  you
akpaga akpaga
Top achievements
Rank 1
 answered on 09 May 2012
1 answer
104 views
does anyone have a good example of nested subreports. i am on q1 2010 and i just cant get this straightened out.

have 1 core report
1 sub report in that core
2 sub reports in that sub report
cant get the data to the tertiary 2 sub reports.

IvanY
Telerik team
 answered on 09 May 2012
1 answer
114 views
Hi there,

is there a solution to add a comment to a field, in the report designer?
For example the order of something, when i mouseover a special field?

Thanks,

Thomas :)
IvanY
Telerik team
 answered on 09 May 2012
2 answers
282 views
This has only started recently, all other reports open in design view with no issues. No dll changes. The error i am getting is:

Object of type 'System.Collections.Generic.List`1[Telerik.Reporting.SqlDataSourceParameter]' cannot be converted to type 'System.Collections.Generic.IList`1[Telerik.Reporting.SqlDataSourceParameter]'.

Any help with this would be greatly appreciated.
Michael
Top achievements
Rank 1
 answered on 09 May 2012
1 answer
77 views
Telerik.Reporting.Charting.ChartSeries series = new Telerik.Reporting.Charting.ChartSeries();
            chart1.Series.Add(series);
            series.Type=Telerik.Reporting.Charting.ChartSeriesType.Line;
            series.Name = "My Series";
 
            Telerik.Reporting.Charting.ChartSeriesItem item = new Telerik.Reporting.Charting.ChartSeriesItem();
            item.XValue = 2;
            item.YValue = 35;
            series.AddItem(item);
             
 
            item = new Telerik.Reporting.Charting.ChartSeriesItem();
            item.XValue = 5;
            item.YValue = 45;
            series.AddItem(item);
             
 
            item = new Telerik.Reporting.Charting.ChartSeriesItem();
            item.XValue = 7;
            item.YValue = 45;
            series.AddItem(item);
 
            item = new Telerik.Reporting.Charting.ChartSeriesItem();
            item.XValue = 8;
            item.YValue = 41;
            series.AddItem(item);
 
            item = new Telerik.Reporting.Charting.ChartSeriesItem();
            item.XValue = 10;
            item.YValue = 35;
            series.AddItem(item);
 
            series.Appearance.PointMark.Dimensions.Width = 5;
            series.Appearance.PointMark.Dimensions.Height = 5;
            series.Appearance.PointMark.FillStyle.MainColor =
            System.Drawing.Color.Black;
            series.Appearance.PointMark.Visible = true;
Based on the above code, I added that in the initialize component function in telerik reporting, but when I click preview, it is just empty, no chart displayed.

Thanks
Steve
Telerik team
 answered on 09 May 2012
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?