Telerik Forums
Reporting Forum
1 answer
39 views

I have table with millions of data.

My requirement is below

I have to generate report with grid and chart on single page.

Which should support 10000 record per page.

and in export it should export all data in table with images in html.

 

Can telerik report work as per my requirement.

We have the license copy of telerik.

Please Help me for it.it is our urgent requirement.

 

Nasko
Telerik team
 answered on 08 Jan 2016
1 answer
104 views

Based on previous years, Telerik Reporting Q1 releases usually occur in mid-late February. Since that date is a little more than 1 month away, when do you plan to post the Q1 2016 Roadmap?

 

http://www.telerik.com/support/whats-new/reporting/roadmap

 

Iana Tsolova
Telerik team
 answered on 08 Jan 2016
3 answers
178 views

Hi 

 Quick question to put out there, is it possible using Telerik Reporting to create a contents page that is built from either section names or sub reports within the main report.

 

This needs to reflect sub reports etc if they are programatically added too

 

Is this at all possible and if so could someone point me to some examples of how to do this.

 

Many Thanks 

 

Tony

Nasko
Telerik team
 answered on 08 Jan 2016
2 answers
276 views
hi
a have two textbox in my report . when i change visible one of textboxe to false , another textbox location.y whil change auto.
how can i set it as static .
Heera
Top achievements
Rank 1
 answered on 08 Jan 2016
3 answers
628 views

Two weeks ago (on 12/15/2015) we upgraded from 9.1.15.731 to the 9.2.15.1126 version of Telerik Reports. As soon as we did, we ran into problems connecting to our Oracle 11g R2 database's stored procedures. We are using the Oracle.ManagedDataAccess.Client provider to connect our .Net 4.5.2 web application to the Oracle database. We found this odd because the 9.1.15.731 Telerik Reports version worked with said client. Here is the error we received while running the report and/or trying to edit the reports using Visual Studio 2015 with the Oracle.ManagedDataAccess.Client provider (I’ve removed the name of the report and stored proc name).

An error has occurred while processing Report '{NAME OF REPORT}':
ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to '{STORED PROCEDURE NAME}'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored

After much hair pulling and research we discovered that the 9.2.15.1126 reports would run using the MSDAORA provider. So we modified the web.config to us the MSDAORA provider when running a Telerik. This worked great on our local machines, but once we deployed the new code to our development server we began receiving the following error:

An error has occurred while processing Report 'Safety and Health Inspections and HAPs Status':
The 'MSDAORA' provider is not registered on the local machine.

We attempted to register the MSDAORA dll on the server using administrative privileges, but this results in a “failed to load” error. 

So now we’re stuck. Has anyone had any issues similar to ours getting the 9.2.15.1126 version of reports to run using Oracle.ManagedDataAccess.Client OR has anyone successfully deployed said version using MSDAORA?

Stef
Telerik team
 answered on 07 Jan 2016
1 answer
91 views

After I upgraded to version 2015 Q2, I noticed that my stack charts changed.  The labels on the stack series are now displaying a line also (see attached example).  We do not want the extra line to display but I am not sure what to change.  DataPointLabelStyle?  Why is this line displaying when it wasn't before?

 

thanks!

Katia
Telerik team
 answered on 07 Jan 2016
4 answers
123 views

The data I'm using to generate a bar chart comes in at 30 minute intervals. This means that the X-axis coordinate system has to have a 'Minutes' Scale BaseUnit.

The issue I'm having is that this means I get a series of very thin, very widely spaced bars (one very thin bar each 30 minutes) rather than bars which are '30 minutes wide'.

I've seen reference to a DateTimeCategoricalAxis in other parts of Telerik documentation (which sounds very much like what I need), but I've been unable to find an equivalent in the standalone designer.

Tristan
Top achievements
Rank 1
 answered on 07 Jan 2016
4 answers
302 views

My company recently converted to telerik for our reports and one of our products that's used to create checks. We have seen two major issues that I'm baffled as to the cause or how to fix it. 

1. We're experiencing an issue on one of our users using Windows 8. When she logs on to her particular windows logon and then to any user for our product her checks are shrinking on the page. Another user can log on that same computer and they don't see the issue(though if they log on to our product on the other user's window logon they do). All the fonts appear smaller and there's a great deal of white space on the right side. (It's not just adding extra white space with a normal sized check)

I attached what our user is seeing as well as what is the normal appearance(obviously very blurred out for security reasons).

2. We have a check made of the same detail section printed 4 times. When printing to a HP Laserjet 2430, each detail is shifting down slightly. I show a green box to show that it seems to be becoming diagonal which is especially odd.

Any ideas or insights into possible causes?

 

 

Lori
Top achievements
Rank 1
 answered on 06 Jan 2016
1 answer
825 views

Hi,

I'm trying to create a report programatically in C# using ObjectDataSource.

I've added a report parameter to the Report, and the parameter bar shows up on the right hand side.

I'm trying to pass the parameter from the report filer to my GetData class when the user clicks on "Preview" button. Can someone please help?

 

We first used the VS Telerik reporting wizard to create a Table report.

            this.RLDS.DataMember = "GetData";
            this.RLDS.DataSource = typeof(Test.TelerikReportLibrary.GenericTableDataSource);

            this.RLDS.Parameters.Add(
                            new Telerik.Reporting.ObjectDataSourceParameter("location", typeof(string), null));

namespace Test.TelerikReportLibrary
{
    [DataObject]
    public class GenericTableDataSource
    {
        [DataObjectMethod(DataObjectMethodType.Select)]
        public static List<AssetReportLine> GetData(string location) {
            var resultAssetList = new List<AssetReportLine>();
            // Get data from database
            return resultAssetList;
        }
    }
}

 

We tried to add a parameter so that it displays on the right hand side of the report.
var reportParameter1 = new Telerik.Reporting.ReportParameter();
reportParameter1.Name = "location";
reportParameter1.Text = "Enter Value for Parameter1";
reportParameter1.Type = Telerik.Reporting.ReportParameterType.Integer;
reportParameter1.AllowBlank = false;
reportParameter1.AllowNull = false;
reportParameter1.Value = "=10";
reportParameter1.Visible = true;
this.Report.ReportParameters.Add(reportParameter1);

Stef
Telerik team
 answered on 06 Jan 2016
2 answers
464 views

Hi guys,

I am glad to see that Telerik has released a new version of report viewer based on HTML 5. However, I hit a technical issue when I try to start using new version of Telerik report viewer.

Okay, let me talk about what I want to do with Telerik.

1. On back-end, I have built a custom reporting service in WCF, which will be implementing advanced business logic. You can think that I will do below steps on back-end in general. 

     a. Bind data to report - Receive UI request and load proper data for a report. I assume that report is a very basic report which doesn't has any sub-report, groups and other advanced features. 

     b. Render a report - Contact Telerik reporting engine to render a report. 

     c. Response - Send result to UI 

2. On front-end, I have built a MVC web project for displaying reports. But I don't want to use ASPX to display reports. Okay,instead of using aspx and Iframe, I want to use new version of HTML 5 report viewer and RESTFUL service (Personally, I don't like Teleirk restful service but I have to use it if there is no way to use HTML 5 report viewer without restful service). My questions shows as below:

 

Q1: After I sent the report result to UI, how to feed the reportSourceData or we say, report object, to HTML5 report viewer? In an old way, I used aspx page to do the data binding and displaying a report. Is there any small demo or steps to show me how to use new report viewer to display report without using Telerik restful service? If answer is no, please look at next question.

 

Q2: In my opinion, Telerik restful service seems like a build-in reporting engine which could be a black box. I don't have full control on restful service or we say its not easy to get full control on restful service. I think restful service may does similar things like my backend service does. If so, I believe there is a way to feed a report result to html 5 report viewer ? Can you please send me demo code to show me how to do that pls?

 

Thank you.

F9

 

 

Hinata
Top achievements
Rank 1
 answered on 06 Jan 2016
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?