Telerik Forums
Reporting Forum
0 answers
175 views
Hi team,

I've confused on attributes KeepTogether, PrintOnFirstPage, PrintOnLastPage of Page, Report Header / Footer. Some of my configuration as attached files and telerik reporting did not work as my expected.
+ Page Header has yellow background and PrintOnFirstPage = True, PrintOnLastPage = True. Add textbox1 to page header and textbox's KeepTogether = True.
+ Report Header has pink background KeepTogether = True. Add textbox2 to report header and textbox's KeepTogether = True.

Expected Result: 
1. Page Header has yellow background only appears on first and last pages. Textbox1 appears on every pages.
2. Report Header has pink background appear on every pages. Textbox2 should appear on every pages.
Actual Result:
1. Page Header has yellow background appears on every pages. Textbox1 should appear on every pages
2. Report Header has pink background appear only on first page. Textbox2 should appear on first page.

Could you please send me your explaination and solution to make telerik run follow my expected? Many thanks.

Best Regards,
Minh Tam.
Tam Pham
Top achievements
Rank 1
 asked on 23 Nov 2010
0 answers
53 views
I have use crystal report long tme for win form.
Now I move to web and I use Telerik reprorting. So I am a beginner.
I was searching but I can't figured out how can make report like this was made by crystal report.
ken
Top achievements
Rank 1
 asked on 23 Nov 2010
2 answers
115 views
I have not had a chance to review the drill down capabilities of Q3 yet, but the biggest question I have is whether or not the expand event allows me to load the next level down of data on demand.  In otherwords, can I initiate another data call at the time the expand event is triggered and get just the data for the item that has been expanded.

I do not want to load all data for all levels at time of render.  Only as needed.

Thanks,

Terry Webster
Terry Webster
Top achievements
Rank 1
 answered on 22 Nov 2010
5 answers
198 views
I am experiencing an issue with Multicolumn reports displaying incorrectly in the web viewer.

I created an avery zweckform report, bound it to a stored procedure, witgh parameters and was able to successfully test the report in the preview and so forth with the report displaying perfectly.

I thn transferred this code to a web application and have successfully got the report to display , however it is only displaying a single column (with the correct reults and so forth).

When I print this using the print , I get the correct multicolumn report.

I jhave checked that the page style and so forth aren't being interfered with

am I missing an option  for the display.

note I have not set zoom width or Zoom Mode
Peter
Telerik team
 answered on 22 Nov 2010
7 answers
533 views

I'm using Telerik Report Q1 2009 and would like to know the best way to populate this report with xml data?
I'm using VS2008, C# and Oracle as my back end.
Within the report I'm not sure also how to reference it once the xml is passed in?

I tried the following

ReportXML rXML = new ReportXML();  
rXML.DataSource = "<XmlDS><table1><col1>Value1</col1></table1><table1><col1>Value2</col1></table1></XmlDS>";         
rvFreqReport.Report = rXML;  
rvFreqReport.RefreshReport(); 
Within my report I added a textbox and set it's value equal to =xmlds\table1\col1 to get the value for column 1.  It doesn't work correctly.  Should just see
Value1
Value2
within my report.

Thank You
Francis Frank
Top achievements
Rank 1
 answered on 22 Nov 2010
0 answers
163 views
How can I draw line at the detail part of report like "Crystal report"
and
How can I use something like "Record Number" on Table binded datasource.

Thanks!
ken
Top achievements
Rank 1
 asked on 22 Nov 2010
0 answers
117 views
Hi team,

  • I am not clear mechanism of "Stop If True" in conditional formatting dialog. Could you please explain how does it work or show me a link which help me understand.
  • Please take a look on my attached file, I have 3 rules and my question is: What will the background colour of "Store_Name" and why ? Many thanks.

Regards,
Minh Tam.
Tam Pham
Top achievements
Rank 1
 asked on 22 Nov 2010
1 answer
88 views
If we know the Page Size...and each page has a footer...

Could you not use html absolute positioning to dock the footer to the bottom of the "page" in the html viewer?  I have this nicely formatted report but the footer keeps smashing itself up to the bottom of the content instead of the bottom of the page in the viewer (PDF looks exactly as I need it though)
Steve
Telerik team
 answered on 22 Nov 2010
2 answers
225 views
Hi There,

I'm currently building a Report showing user data by calling a LINQ Function through a .dll and setting my Datasource accordingly for the Report. Everything works fine in the Details area of the report, but it's the Report Header area I am having some problems with.

My function is pulling Employee Information from the Database and displaying the info for the "selected" employee. This displays all of the information on the selected employee in the Details area of the report. But since the Report doesn't know that it's Datasource is only selecting for ONE employee, it copies the data to each page of the report.

For instance; If the selected employee has 12 records in the database, those 12 records are displayed, and then displayed again on every page for another 12 pages. Making my report 12 pages longer than it should be.

Is there a built in Function that I am missing in the Report to tell a Textbox to only display one record?

Best Regards,

Landon
Landon
Top achievements
Rank 2
 answered on 19 Nov 2010
1 answer
144 views
I am using a Pie Chart from Telerik Reporting Q2 2010 and would like to change the numeric values it used to create the pie slice with a percentage concatenated with an identifier.  The datasource is a SqlDataSource and I'm using the ItemDataBound event to set various items.

There are two columns in the datasource a TotalCost and Product column.  

I've tried setting a variety of different properties but to no avail.

Chad
Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


       Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
    Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
    Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
    Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
    Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    E

Private
 Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"
Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Su
Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
Private Sub Chart1_ItemDataBound(ByVal sender As Object, ByVal e As System.EventArgs) Handles Chart1.ItemDataBound


        Chart1.Series(0).DataYColumn = "TOTALCOST"
        Chart1.Series(0).DataXColumn = "PRODUCT"
        Chart1.Series(0).DataLabelsColumn = "PRODUCT"


    End Sub
Peter
Telerik team
 answered on 19 Nov 2010
Top users last month
Chester
Top achievements
Rank 1
Iron
Simon
Top achievements
Rank 1
Iron
Douglas
Top achievements
Rank 2
Iron
Iron
SUNIL
Top achievements
Rank 3
Iron
Iron
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?