Skip to main content

How to Embed Reporting into Your ASP.NET Core Web Applications?

 

Embedded reporting mainly states a method of integrating business intelligence reporting tools like dashboards and charts into a software application. BI is a process of collecting and displaying data in a way that is easy to analyze and digest. The reports cover various aspects of an organization which ranges from sales to marketing and other operations.

BI handles areas of data and analytics, but reporting would focus on presenting the data most easily for better understanding. Embedded reporting would allow multiple users to view those dashboards and data streams that are relevant to use instead of shifting to different dashboards.

How to use Embedded reporting?

One of the common uses of this beautiful reporting tool is in CRM (customer relationship management) suites. The applications are used to increase popular ways of centralizing and optimizing sales and marketing operations. Using BI reports, companies can reduce the time it takes to derive actionable BI insights.

Here in this blog, we’ll learn how to embed beautiful reporting into ASP Net core web applications.

HTML5 Report Viewer

The viewer display report documents on a webpage. They use a custom JQuery based widget, which comes with rich-feature and stateful plugins. The viewer stores the layout in the HTML template, which supports mobile and desktop browsers with full customized methods. HTML viewer includes built-in search functions, hyperlink interaction, and multi-page zoom view support.

Check a few of the HTML5 viewer features

  • The interactive view allows drill-down and drill-through
  • Ability to scale the pages for the best viewing experience
  • Report Parameter intuitive UI for user input
  • Customized layout based on a pure HTML5 template
  • Support mobile as well as desktop browsers
  • Color themes using Kendo UI theming mechanism
  • Scale the pages for best experience including full-page or custom scale factor

What are the system requirements for the HTML5 report viewer?

  • Required Service: The viewer would need a running instance of Telerik Reporting rest service in order to display reports.
  • Required JavaScript Libraries and Files:
  • JQuery minimum required version 1.9.1
  • Kendo UI Professional Q3 2015
  • HTML5 Report Viewer JavaScript
  • Required HTML5 compliant browser

Use HTML5 report viewer with Reporting REST Service

It’s one of the quickest ways to add an HTML5 report viewer to a web project. Here, the viewer won’t be able to process and render work by itself, so it uses the Reporting Rest service. The beautiful reporting services wraps the report engine and expose its functionality over HTTP so the viewer can access it easily. There’s a common scenario used with viewer-service interaction that described with a high-level of abstraction like explained below

HTML5

Image Courtesy: https://www.telerik.com/

  • The viewer requests a report document. It provides report definition with a unique identifier
  • The service search for the requested report definition and guide report engine to process and render in the HTML5 report document
  • Later the service will return the produced result to the viewer
  • Finally, the viewer will display the report document to the user

Host Reporting REST service in your ASP.Net core web Application

Host Reporting REST service in your ASP.Net core web Application

No viewer can function without the service. Let’s assume that the project display report is a service project then uses a separate project with the solution as explained in the below blog. If you don’t have ASP net core web applications, then you can hire ASP.Net core developer or an ASP.Net development company. Or else follow the below steps to create one:

  • Open Visual Studio 2019
  • Now, Open File>New>Project
  • Choose ASP.Net Core Web Application and Press Next
  • Enter your Project name and click to create one
  • Choose .Net Core and ASP.Net Core 3.1 framework.
  • Choose web app template and click on create

Now you can host a reporting rest service by adding NuGet Package. Add own dependencies to project using service packages like Microsoft.AspNet.Core.MVC.NewtonsoftJson.

We can activate NewtonsoftJson services by using the below code:
services.AddRazorPages().AddNewtonsoftJson();

Now add, minimal Reporting Rest service like:

ASP.Net core web Application

Image Courtesy: https://www.telerik.com/

The storage section in the above service specifies internal state objects and temp files.
ReportSourceResolver specifies for report definition inside the Reports application folder.

There is no report folder yet, as we need to add a report, let’s create a folder in the project root named under Reports and copy your report definition file into it.
Configure the API controller inside ConfigureServices method
services.AddControllers();

Now, Map the controller endpoints by adding the code below:

Now, Map the controller endpoints by adding the code below:

Now the next step is to create actual Reportscontroller class
In the root of the project add new controllers’ folder
Select Add>Controller

Choose an API controller with an empty template and click to Add it
Name new controller ReportsController.cs and click on Add

Know how to change the content of the new controller

Know how to change the content of the new controller

Request a Report Document and Display Report Document in HTML5 Report Viewer
In this section, we’ll get to know how to request a report document and display it into the HTML5 report viewer.

Add custom section like the head element of the Layout page

<head>

@RenderSection(“Head”, required: false)
</head>

So now, inside pages/Index.cshtml add div element to hold the viewer. The element inside it comes with unique id. Set it with CSS file, inline style dimension

<div id=”reportViewer1″ style=”width:840px; height:1200px”>
</div>

Later, add a link to section head to the desired Kendo UI theme in custom head and finally to the viewer widget’s JavaScript file by calling the Telerik_ReportViewer method.

Telerik_ReportViewer method.

Understand below Scripts section which helps to insert viewer script after JQuery

Understand below Scripts section which helps to insert viewer script after JQuery

Check the final Index.cshtml file

Check the final Index.cshtml file

Now press F5 in visual studio and check HTML5 Report Viewer. The service instructs Report Engine to render the report definition in HTML5 form and return it to the viewer as a report document.

Check final output

Check final output

Image Courtesy: https://www.telerik.com/

If you want to check the errors, then press F12 in the browser and log the network traffic. If you want to hire ASP.NET Core Developer or looking for ASP.NET Development Company connect with us to discuss your requirements.

Comments

Popular posts from this blog

How to Hire a Full Stack Developer for Frontend Web Development?

People are often heard nowadays talking about back end and front end or sometimes the server side and the client side. The proper presentation of the data to the users is included in the frontends. The users mainly access the web through the normal browser. So, to target the end users, various technologies like JavaScript, CSS, and HTML are used. The  full stack web developer  and full stack programmer is mainly involved in the overall task of development, and so, it may be considered as the proper answer to the question, “What is full stack developer?” The backend generally, on the other hand, is much more concerned with the data aspect of a web application and also with the business logic. The 3-tier architecture For web development, there is mainly three-tier architecture which proves very much useful. Common client-server software architecture is implemented in this particular approach. Due to its huge demand, it is imperative to learn full stack web develo...

5 Features while Developing On-Demand ‘Mover n Packers’ App like Uber Movers

Peeping into a few years back, though there were mobiles trending, mobile apps were more limited towards messaging and gaming, but a year or two year back scenario depicts a different story in all. On-demand applications that can be for Food or say Cab Booking or for Salon or for the  Guard booking app  for the event, anything, and everything can be covered in the app itself. UBER is considered more of as a BRAND instead of just an app to book the cab. It has widespread its scope beyond the app in various fields across the globe. Along with the services of moving human from one destination to another, not just limiting to that, Uber is even into Movers and Packers, namely Uber Movers. According to the report, “UberMovers provides free and professional moving services for up to ½ an hour for students in Atlanta between 9 a.m. to 2 p.m. on Saturdays only”. Similar moving services, it provides in Nashville even. Eventually, it is spreading its wings further too. Are you the...

Top excellent Photo Editing Apps for iPhone and Android

 The photograph is always looking to capture picture-perfect images with creating memories. Using smartphones cameras offers great optics with high-resolution and sharp results. Today photographers are increasing as they click high-quality images with excellent resolution. If you’re a beginner and want to click masterpiece, the best we could recommend is to go for the best photo editing app for iPhone and Android to create a great visual strategy. One can also choose a product photography course to include photographic techniques and explain the best photo editing apps they should use. After you pick the best photo editing app, make sure it offers a comprehensive set of tools that make your photos shine. What are the best photo editing apps? After testing dozens of famous applications, we have listed below the best photo editing apps for iPhone and Android . We know that not everyone can shoot a photo with just an Android or iPhone smartphone. Therefore, here come the photo editi...