This is a migrated thread and some comments may be shown as answers.

Web Application Reporting with Large Dataset

3 Answers 53 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Maddy
Top achievements
Rank 1
Maddy asked on 08 Jan 2016, 02:33 PM

hello ,

I want to create a Report with Huge dataset i.e upto millions of records and over 20 columns,

also i have to display Charts on the same report page.

can i do this with telerik reporting and how much time report will take to render ...

pls rply ASAP... 

 

 

3 Answers, 1 is accepted

Sort by
0
Nasko
Telerik team
answered on 08 Jan 2016, 02:56 PM
Hello Maddy,

It seems you have posted the same question in another forum thread. You can check the answer here.
To find out how much time the report generation will take, please download the trial version of Telerik Reporting and test the scenario on your end.

Regards,
Nasko
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Maddy
Top achievements
Rank 1
answered on 12 Jan 2016, 07:14 AM

hi.. 

thnks for the reply..

i m not using any  Report class library ..

i want to create Report and assign reportsource programmatically , i have added Report viewer on same page where i want to assign Reportsource..

following is my code -

 Dim objectDataSource As New Telerik.Reporting.ObjectDataSource()
            objectDataSource.DataSource = GetCaseReport()     ' GetCaseReport() returns a DataTable

            'Creating a new report
            Dim report As New Telerik.Reporting.Report()

            ' Assigning the ObjectDataSource component to the DataSource property of the report.
            report.DataSource = objectDataSource

            ' Use the InstanceReportSource to pass the report to the viewer for displaying.
            Dim reportSource As New InstanceReportSource
            reportSource.ReportDocument = report

            ' Assigning the report to the report viewer.
            ReportViewer1.ReportSource = reportSource

 

 from above code i am not getting required op..

pls reply..

thanks in advance

0
Nasko
Telerik team
answered on 14 Jan 2016, 04:39 PM
Hello Maddy,

Dim report As New Telerik.Reporting.Report()

will create an empty report object without any structure or layout. You need to design the report in a report designer before you can connect it to data and preview it. For more information, please follow the Quickstart help articles.

Regards,
Nasko
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
General Discussions
Asked by
Maddy
Top achievements
Rank 1
Answers by
Nasko
Telerik team
Maddy
Top achievements
Rank 1
Share this question
or