Skip to main content
A newer version of this page is available. .

ASP.NET Core Reporting

  • 3 minutes to read

This section describes how to create, update, and customize reporting applications in ASP.NET Core.

Prerequisites

.NET 6 .NET 5 .NET Core 3.1 .NET Core 2.1
Visual Studio 2022 Visual Studio 2019 v16.9 or later Visual Studio 2019 v16.4 or later Visual Studio 2017 v15.7 or later

To install the controls on Windows, use the DevExpress .NET Products Installer. For other operating systems, we do not provide an installer and IDE integration. Use npm and NuGet packages to configure your projects.

Important

In .NET 6, the System.Drawing.Common library is compatible with Windows only. An exception is thrown on other platforms. See the following topic for more information: System.Drawing.Common is Supported on Windows Only.

Note

  • The following topic shows how to add a report to an application: Create a Report in Visual Studio. You can add a new report or import a report from a .REPX file.

Use Reporting Components

You can use the following components in your ASP.NET Core application:

Document Viewer
Document Viewer allows users to view, print, and export reports. The following topics describes how to add this component to your application:
Report Designer
With the Report Designer, users can create, store, and modify reports. The component includes a built-in Document Viewer. See the following topic for information on how to add the Report Designer to your application:

For code samples review the following topic: ASP.NET Core Reporting Best Practices.

Review the following help topic for more information about Visual Studio Report Designer in .NET Core projects: .NET/.NET Core Support.

Features in Detail

Limitations

Review the following help topic: Limitations of .NET/.NET Core Applications

Upgrade a Project

The following topic describes how to upgrade a project to a newer version of reporting controls:

Localize an Application

The following topic describes how to use JSON files from the DevExpress Localization Service to localize reporting controls in an ASP.NET Core application: Localize Your ASP.NET Core Reporting Application. For general information on the ASP.NET Core platform, review the following topic: Globalization and localization in ASP.NET Core.

Draw Reports on Linux and MacOS

The Use the DevExpress Cross-Platform Drawing Engine topic demonstrates how to use the DevExpress cross-platform drawing engine to render reports on Linux or MacOS platforms.

Use Docker

Refer to the Visual Studio Tools for Docker with ASP.NET Core tutorial for instructions on how to dockerize (add to a Docker container) your DevExpress Reporting ASP.NET Core application.

Make the following changes to the docker file configuration when you add the application to a Linux container:

 ...
 FROM microsoft/aspnetcore:2.1 AS base
 RUN apt-get update
 RUN apt-get install -y libgdiplus libc6-dev
 RUN apt-get install -y libicu-dev libharfbuzz0b libfontconfig1 libfreetype6
 ...
See Also