Telerik Forums
Reporting Forum
1 answer
80 views
Hello.
I have created 3 columns report. Each report depending on row count in datasource will have few pages. Very often the last page is not fully filled (for example frst 2 columns are filled and third one is empty). Can I somehow force columns to have similar height?

Maybe i could create a section which will be shown just on last page and have width of whole page and dynamic height? Is it possible?

I will appreciate any help
Steve
Telerik team
 answered on 09 Oct 2012
1 answer
151 views
Hello,

I need a example code (or a way to do it) for drill through action on chart.

Situation is that suppose there is a chart displaying yearly expenses as bar chart, i should be able to click on any year's bar that will navigate to new report showing detailed expenses for that particular year. Means taking the clicked bar value as input for the new report

Expecting your prompt response

Thanks in advance 
Swapnil
Sr. developer

Steve
Telerik team
 answered on 09 Oct 2012
1 answer
57 views
Hello,

Im building a simple report containing a table. the table is showing the date in the first colom but now i want the first colom of the table  only to contain the date if it is different from the previous record.

example:
current:
20-12-2012 11:45 aaa
20-12-2012 11:46 bbb
20-12-2012 11:47 sss
21-12-2012 11:48 ddd
21-12-2012 11:49 zzz

i want:
20-12-2012 11:45 aaa
11:46 bbb
11:47 sss
21-12-2012 11:48 ddd
11:49 zzz


can someone help me?
Peter
Telerik team
 answered on 09 Oct 2012
1 answer
122 views
On our GUI screens we use the Telerik.Windows.Controls.RadRichTextBox control. We save it to a PDF byte array with the PdfFormatProvider.Export() method.
The PDF byte array is passed through a WCF-service that saves it in a SQL-Server database. So far so good.
To print the content of the RadRichTextBox control on the Telerik.Reporting.Report we use the Telerik.Reporting.PictureBox control.
But this control can handle only image formats, no PDF. For Silverlight it is also limited to a few formats. Our choice was the PNG-format.
In the WCF-service the PDF byte array read from the database, is converted to a PNG byte array (using using GhostScript DLL) that is returned to the Silverlight client application.
Through a object data source the PNG byte array comes in the report and is bind to the PictureBox.
Conclusion:
As you can see this is a very long and difficult way to just print the content of a RadRichTextBox!
The content is on the report but the quality from the converted PDF is so very bad that is not acceptable. So I’m stuck.

Question
Is if there is a better Telerik way to do the job. If not I can’t use the Telerik controls an we will not buy.
Maybe I need I powerfull PDF-PNG commercial converter with a .Net API to improve the quality.

Peter
Telerik team
 answered on 09 Oct 2012
4 answers
150 views
I am using version 6.1.12.611 i have added a drill through report as described here http://www.telerik.com/help/reporting/designing-reports-interactivity-how-to-add-drillthrough-action.html

Added the linked parameters etc...

Every thing looks great but when I run the application (silverlight) main report works fine but when i click on the drill down label I get the following error ReportSource type address resolution not implemented.

Is this supposed to work ?
Andrew
Top achievements
Rank 1
 answered on 09 Oct 2012
1 answer
78 views
On our GUI screens we use the Telerik.Windows.Controls.RadGridView control. It is possible to sort, filter and group by the data.
To print this filtered, sorted and group by list what to do?
Through the object data source we now can print a list but this without any knowledge of the actual selections from the grid.
Please advice here.
Steve
Telerik team
 answered on 09 Oct 2012
1 answer
217 views
Hi friends,

I have several questions for multiple value parameters
  1. What if I want to hard code the values ? for Example Labels may read "Label 1" , "Label 2" , "Label 3" , "Label 4" But the values would be 1,2,3 and 4 res. Below is what I tried.
    //Report1.Designer.cs : Designer Code behind (to display the report parameter setup that I have)
                reportParameter2.AllowBlank = false;
                reportParameter2.AutoRefresh = true;
                reportParameter2.MultiValue = true;
                reportParameter2.Name = "Parameter2";
                reportParameter2.Text = "Checkbox List";
                reportParameter2.Type = Telerik.Reporting.ReportParameterType.Integer;
                reportParameter2.Visible = true;
                this.ReportParameters.Add(reportParameter1);
                this.ReportParameters.Add(reportParameter2);
     
    // Default.aspx.cs
        public partial class _Default : System.Web.UI.Page
        {
            protected void Page_Load(object sender, EventArgs e)
            {
                var report = new WebApplication1.Report1();
                int[] CheckBoxList = { 0, 1 };
                report.ReportParameters["Parameter2"].MultiValue = true;
                report.ReportParameters["Parameter2"].Value = CheckBoxList;
                //report.ReportParameters[1].Value = Gender;
                ReportViewer1.Report = report;
                ReportViewer1.RefreshReport();
            }
        }
  2. I can not see the check-boxes with the above scenario ?
  3.  Is there any way so that I can implement the radio button group.As we do doe gender, for example ?
Aarsh
Top achievements
Rank 1
 answered on 09 Oct 2012
5 answers
281 views
Hello,

I have a dynamic report that automatically generates columns and rows on a table based on a dynamic datasource. But the problem comes in with hundreds of records - these records are all shown in one page. And the UI lags when trying to scroll down. In the Silverlight Report Viewer, there is a paging control but I couldn't figure out how to make this work. Please advise. Thanks!
Steve
Telerik team
 answered on 09 Oct 2012
7 answers
368 views
We are giving serious thoughts for shifting to Telerik reports.

So friends please guide us get started.

I would like to know / if...

  • Data Dynamics to Telerik Report Conversion utility is available
  • Subreports are supported
  • Export to Word, Excel , PDF and HTML
  • Access to report life cycle just like asp.net page life cycle
  • The degree of customization allowed for the Telerik reports if required
  • Ifwe can set the date sets, data sources, parameter values programatically
  • Does it support SQL reports ? (figures crossed)
  • We can have subreports as a table row (please see the attached PNG file for clarification. Customer Order History and Customer
  • Product History are the subreports. We are using this scenario basically.)

FYI: The report gets flourished by the stored procedure hence the end user needs to pass some parameters to the report, which in turn will be passed to stored procedure.
The parameter should support default values (programatically and manually), validation. Check-box list and date selector are heavily used parameters in our reports.

Thank you,
-Aarsh
IvanY
Telerik team
 answered on 09 Oct 2012
1 answer
171 views
I want to programmatically access the fields collection in the ObjectDataSource object in either the OnItemDataBound or OnItemDataBinding event of the Telerik report to hide report elements if they do not contain values.

How would I accomplish this in the code file of the Telerik report?
Elian
Telerik team
 answered on 09 Oct 2012
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
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?