Telerik Forums
Reporting Forum
2 answers
290 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
581 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
260 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
108 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
120 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
292 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
81 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
1 answer
321 views
Hello,

I've designed a report for PDF, with page settins: Portrait; A4 & .5in margins on each side. Now I need to also display this report in a div in my application that is 700px wide. However, the width of the report is greater than 700px. Is there a way to alter these settings at runtime from my application?
Steve
Telerik team
 answered on 09 May 2012
4 answers
185 views
Hi

I am making a database web application which uses a telerik reporting report to display some statistical charts based on parameters that the user selects.

What I would like to provide to the end user is a combobox that allows the users the chance to select the skin they want the charts inside the report to have.

The report is shown using a report viewer control on an aspx page.

Is it possible to put the combobox on the aspx page and then reference the charts skin property when the combobox is changed

ie reporviewer.report.chart1.skin = combobox.selectedvalue

Thx for any advice that you can give

Regards

Dwight
Dwight
Top achievements
Rank 1
 answered on 09 May 2012
3 answers
295 views
Hi,

We regularly encounter a problem with our reports.  Some user opens a report page, then, omits filling all the required fields parameters and then clicks on the Export or Refresh button.  Because the parameters are not filled, the report crashes with an exception, which we can handle, but it would be a lot more convenient to prevent the user from clicking the buttons beforehand.  Is there a convenient way to do that. 

For your information, we tried setting the "ShowRefreshButton" and "ShowExportGroup" to False on the Load event and setting them to True on the NeedDataSource event.  Unfortunatly, even if the NeedDataSource event is triggered and the setters properly set to True, the buttons won't be visible after the report is generated. 

Regards,
Hugues Ferland
Top achievements
Rank 1
 answered on 08 May 2012
Top users last month
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?