Telerik Forums
Reporting Forum
1 answer
762 views
I can't open a few of my reports in design view no matter what i do. I followed the tutorial at set up a separate Reporting Library for just the reports, but for a select few reports it gives me the error "Object of type 'Telerik.Reporting.Drawing.Unit' cannot be converted to type 'Telerik.Reporting.Drawing.Unit'." when i try to view the report in design view. I created a new blank application and i still get the same error when trying to open the reports. I can send it to whoever if it would help. thanks.
Steve
Telerik team
 answered on 29 Oct 2010
1 answer
176 views
Hi Telerik team,

I got a problem with bar graph customization in Telerik report version Q2 2009. My customer requirement is they want to fixed the length size of each bar graph to "Millimeter" unit. For example, if data count is 12 items, each bar's width must be 2 mm. But if data count is 3 items, each bar's width must be 8 mm (make it bigger).
Is it possible to do that? I see the graph usually adjust the width of each bar by automatic based on amount of item and graph area.

Regards,
Jiraphat Jokdee
Ves
Telerik team
 answered on 28 Oct 2010
1 answer
95 views
I am trying to add some styling to a crosstab in my report.  I have added different colors to different sections of the report.  When I view the report in the designer preview, the colors show up fine.  When I run the project though, I am not accurately seeing all of my changes.  When I export to PDF though, I can see all of the changes there.

A second part to this questions, is that I have removed the borders for every cell in the crosstab.  No matter what I change though, I still get lines around every cell in the pdf export.

Any help would be appreciated. Thanks.
Steve
Telerik team
 answered on 28 Oct 2010
1 answer
93 views
Hi,

Is it possible in a report to have a vertical logo in the left margin ?, how would I do that ?.

Best

Ole.
Steve
Telerik team
 answered on 28 Oct 2010
4 answers
266 views
Hi,

I have bought Telerik_Reporting_Q2_2010_v4_1_10_9x  today.
I had developed the application using Telerik_Reporting_Q2_2010_v4_1_10_7x trial version using a patch from the forum and the subreports with horizontal &vertical lines were working

But the same code is not working with 9x version.
I am attaching the screenshot of how its looking.

Please help us with some sort of patch to fix the problem.

Regards,
Suman.
Steve
Telerik team
 answered on 28 Oct 2010
5 answers
261 views
Is it possible to use a pre-made form as the background / basis for a report in Telerik Reporting?

In other words, I have a PDF form on which I'd like to drop data fields.  is it possible to load or import the form into the report writer and then drop fields on it per normal?  I can think of the "stretching" limitation, but I'm curious if the report could not stretch the page, but spawn to new ones as the data were merged in some way.

Thanks!
Steve
Telerik team
 answered on 28 Oct 2010
1 answer
88 views
Does anyone know of any way to exclude certain columns only from CSV when exporting reports to CSV? I have columns to display the sum of some numbers on other formats but i dont want them in the CSV
Steve
Telerik team
 answered on 28 Oct 2010
4 answers
361 views
With the new Q2 release Telerik Reports hyperlinks are now supported,
and I am trying to enable interactive sorting without tables. Table
performance seems very slow or even hangs  when using table grouping.

With the fields in the detail section directly, and  using the NeedDataSource, or ItemDataBinding(for the report details section)  event I can grab my report params but in these events the sorting methods don't work. "Telerik.Reporting.Data.SortDirection.Asc"

The sorting does work under InitializeComponet() but
I can't get the params or at least don't know how at that stage of
report rendering. .

I am designing the reports in a class library  

Thanks

Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;
 
           if ((string)report.Parameters["SortDir"].Value == "Asc")
           {
 
               this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
               
                
           }

private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }




private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
       
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

             report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
       {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
private void Report3_NeedDataSource(object sender, EventArgs e)
        {

            Telerik.Reporting.Processing.Report report = (Telerik.Reporting.Processing.Report)sender;

            if ((string)report.Parameters["SortDir"].Value == "Asc")
            {

                this.Sorting.Add(new Sorting("firstname", Telerik.Reporting.Data.SortDirection.Asc));
                report.DataSource = this.sqlDataSource1;
                
            }
            //
            // TODO: Add any constructor code after InitializeComponent call
            //
        }
Steve
Telerik team
 answered on 28 Oct 2010
2 answers
84 views
I'm starting with the trial for reporting and Web toolkits using VS2010, 4.0 framework.  I have a web application with a report viewer that is consuming reports defined on a separate dll library.  In one report I have a field (textbox) that has what I want to be "active"content - meaning I want the user to click that textbox and have it navigate to another report serving much like a drill down.  This I have been able to accomplish.

Additionally, I am trying to maintain a set of navigation hyperlinks outside the report/report viewer that can also serve a similar report navigation purpose.  These hyperlinks would instruct the report viewer to change its report source, parameters, etc.  The key here is that I am creating an alternative to a document map - its just a business requirement.

How would I know when the user has clicked on the report field, thus triggering the navigation action?  I need to know this because I need to update the hyperlinks to reflect the new report "context".  I'm a bit dumbfounded by the lack of useful events in the report control hierarchy.  The report viewer appears to be blissfully ignorant of important actions like the one described above...  is this true or am I just missing something obvious?

Thanks in advance,
Ed
Peter
Telerik team
 answered on 27 Oct 2010
1 answer
86 views
I have a stored procedure that builds a temp table within itself and returns its results. however when i add the sqldatasource to a report via the wizard i get results when i execute it. but no data fields show up. and it does not allow me to continue the wizard as far as designing the report with theme etc. it stops at the selected datasource.
any ideas on how i can rememdy this?

Joshua
Joshua Gates
Top achievements
Rank 1
 answered on 26 Oct 2010
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?