Telerik Forums
Reporting Forum
1 answer
246 views
Hi,

I was wondering if there is some way to place on each row a bar chart of a single value +/- from 0.  Please forgive me as I am not familiar with charting terminology.  A diagram might help with my intentions.

Row 1    -2      --|
Row 2     3         |---
Row 3   -4     ----|
Row 4    -1        -|
Row 5     5         |-----
etc.

I realize there isn't a lot to go on here but I hope my intentions are clear enough.

Cheers,
Clint
Peter
Telerik team
 answered on 20 May 2010
1 answer
168 views
I have installed the trial version of Telerik in my system. I tried to create a report in my Web Application using sql server as a data source. But when I try to generate the preview, it is not showing anything.
Please give me the step by step process to create a report in Web application. And also how to integrate this report to web page(Default.aspx).....
Peter
Telerik team
 answered on 20 May 2010
1 answer
838 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
453 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
220 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
154 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
140 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
430 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
160 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
505 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
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?