Telerik Forums
Reporting Forum
1 answer
744 views
How would one go about creating a table that has two rows, the top having three columns and the bottom having only one that spans the top three? I can't seem to get a table to do it, and haven't had much luck with the list either.
Peter
Telerik team
 answered on 20 May 2010
5 answers
402 views
Hello,

I was looking through your documentation and videos and I couldn't find any examples of using the Telerik Reporting with WCF Ria Services. I was wondering if anyone is able to provide me with an example/starting point so I can work Telerik reporting into my current WCF Ria Services Silverlight Application.

Thanks,

Brett
Ahmed Saeed
Top achievements
Rank 1
 answered on 20 May 2010
0 answers
186 views
in my report detail section I have a list of items. I want to put in an auto increase number in front of each item. Is it possible? e.g.
1    John Smith    Doctor
2    Mark Williams    Teacher
3    Joe Smith    Scientist

I dont want to do this in my query because the query has complex grouping.

found the function RowNumber()

never mind, thanks for reading
sf
Top achievements
Rank 1
 asked on 20 May 2010
4 answers
123 views
I am trialing the silverlight and reporting tools.  I am using the same technique to put the reports in a combobox as the sample.  When I put up my web application on the server the reports are only visible for a short period of time in the combobox.  Is this because I am using the trial dlls or because there is an issue with my project?
brigus
Top achievements
Rank 2
 answered on 19 May 2010
3 answers
95 views
Hello Telerik,

I read this thread that explain the problem I'm having with Q1 2010

http://www.telerik.com/community/forums/reporting/telerik-reporting/business-objects-binding-broken-in-2009q3.aspx#1199032

I followed the instructions given in it with no success.

Could you please help?

Sincerely

Adrian

Steve
Telerik team
 answered on 19 May 2010
8 answers
370 views
I am trying to figure out how to calculate pergentages by subtotal.  Using Product Sales Per Period Demo as an example...

2003 Bike Rack total is 134.9k  and Total 2003 Accessories is 590.3k  Id like to add a column next to 2003-Total called "2003 % to total"  where id see something like ..134.9 / 590.3 = .2285 = 22.85%, so Bike Racks were 22.85% of Accessory Sales in 2003.  and so on for each item in each group ...

Im not sure how exactly to do this in report writer.  I think I could do it if I could bind an expression to a textbox in some particular group.

an expression something like ... = Fields.2003Sales / Report.Groups.AccessoriesGroupFooter.Textbox17.value

how can i acheive this ...

thanks in advance...
kellyroberts
Top achievements
Rank 1
 answered on 19 May 2010
1 answer
132 views
SIR,
whether it is possible  to click a single sector in pie chart and after clicking that sector it should be separated a little bit from that pie .
My question is related with wpf application.

Regards
Adil
Dwight
Telerik team
 answered on 19 May 2010
4 answers
452 views
Hi all,

  I am using telerik reporting tool.i am passing from date and todate from aspx page and displaying chart on the report viewer.

Chart is coming correctly but legend is showing as item1, item2,item3..I want to show the name in legends and show the  time in percentage in Y columns(ex:   series.DefaultLabelValue = "#%").I have the datacolumn as "name" and "usage_time".

"usage_time"  should be display as percentage and "name" should in the legend

please tell me how to do it?

i am putting my coding for your reference

in aspx page:



                DateTime dtFromDate = (DateTime)dpFromDate.SelectedDate;
                DateTime dtToDate = (DateTime)dpToDate.SelectedDate;


                ReportProperty oPro = new ReportProperty();
                oPro.FromDate = dtFromDate;
                oPro.ToDate = dtToDate;

                telerikReportGraph oReport = new telerikReportGraph();              
                oReport.GenerateReport(oPro);
                reportviewer.Report = oReport;


in reporting.cs

public void GenerateReport(ReportProperty pro)
        {

            DateTime fromDate = pro.FromDate;
            DateTime toDate = pro.ToDate;
           
            titleTextBox.Value = "User/Time Pie Chart";
            
            
            ds = DBMethods.GetDetailsForUserChart(1, fromDate, toDate);
            


            ChartSeries series = new ChartSeries();           
            series.DataYColumn = "usage_time";
            series.Type = ChartSeriesType.Pie;           
          
            series.Appearance.LegendDisplayMode = ChartSeriesLegendDisplayMode.ItemLabels;
            series.Appearance.LabelAppearance.Visible = true;
            series.Appearance.ShowLabelConnectors = true;
            series.Appearance.ShowLabels = true;
            series.Appearance.DiameterScale = 0.6;
        
            chart1.ChartTitle.TextBlock.Visible = false;
            chart1.ChartTitle.Visible = true;
            chart1.Legend.Visible = true;
            series.DefaultLabelValue = "#%";
            chart1.Series.Add(series);



  foreach (DataRow row in ds.Tables[0].Rows)
            {
                


                ChartSeriesItem item = new ChartSeriesItem();
              
                item.Name = (string)row["name"];
                item.Appearance.Exploded = true;
                series.DefaultLabelValue = "#%";

            }


 this.chart1.NeedDataSource += new System.EventHandler(this.chart1_NeedDataSource_1);
}
 private void chart1_NeedDataSource_1(object sender, EventArgs e)
        {
    (sender as Telerik.Reporting.Processing.Chart).DataSource = ds;

}

Antonio Simoes
Top achievements
Rank 1
 answered on 19 May 2010
3 answers
143 views
Guys,
Is this for real? or am I missing big time?
the zoom selection is showing OK in IE, but where did it gone in FF...........................
I'm using Q3 2009
Please advise,
Mickey
Steve
Telerik team
 answered on 19 May 2010
6 answers
202 views
After i referenced my test report project dll in my window app, i can't see it displayed on the report property dropdown list of the ReportViewer. I also try to load it by codes and got this error: Unable to cast object of type 'TestReport.Report1' to type 'Telerik.Reporting.IReportDocument' with these codes:

Dim

 

a As New TestReport.Report1()

 

 

 

Me.ReportViewer1.Report = a    - this line got the above error

 

 

 

Me.ReportViewer1.RefreshReport()

 

 



Attached are some screenshots. It doesn't let me to attach my source codes here.

THanks
Quan
Quan Nguyen
Top achievements
Rank 1
 answered on 18 May 2010
Top users last month
Jay
Top achievements
Rank 3
Bronze
Iron
Iron
yw
Top achievements
Rank 2
Iron
Iron
Stefan
Top achievements
Rank 2
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Bohdan
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?