DevExpress.Blazor.Reporting.Viewer
26.1.5-pre-26235
Prefix Reserved
dotnet add package DevExpress.Blazor.Reporting.Viewer --version 26.1.5-pre-26235
NuGet\Install-Package DevExpress.Blazor.Reporting.Viewer -Version 26.1.5-pre-26235
<PackageReference Include="DevExpress.Blazor.Reporting.Viewer" Version="26.1.5-pre-26235" />
<PackageVersion Include="DevExpress.Blazor.Reporting.Viewer" Version="26.1.5-pre-26235" />
<PackageReference Include="DevExpress.Blazor.Reporting.Viewer" />
paket add DevExpress.Blazor.Reporting.Viewer --version 26.1.5-pre-26235
#r "nuget: DevExpress.Blazor.Reporting.Viewer, 26.1.5-pre-26235"
#:package DevExpress.Blazor.Reporting.Viewer@26.1.5-pre-26235
#addin nuget:?package=DevExpress.Blazor.Reporting.Viewer&version=26.1.5-pre-26235&prerelease
#tool nuget:?package=DevExpress.Blazor.Reporting.Viewer&version=26.1.5-pre-26235&prerelease
DevExpress Native Blazor Report Viewer
Use the DevExpress Blazor Report Viewer to display DevExpress Reports in Blazor Server, Blazor WebAssembly, and .NET MAUI Blazor Hybrid applications. The Report Viewer allows users to specify report parameters, navigate multi-page documents, print, and export resulting documents.
Key Features
- Built with Blazor components — native support for Blazor component lifecycle and dependency injection.
- Supports Blazor Server, Blazor WebAssembly, and .NET MAUI Blazor Hybrid.
- Full-text search across report content.
- Interactive parameter panel — users can adjust report parameters.
- Zoom in or out and fit the document to the available width.
- Export reports to PDF, XLSX, DOCX, CSV, HTML, RTF, MHT, and Image formats with specified options.
- Print from the browser.
- Customizable toolbar, tab panel, and parameter editors — tailor the viewer to your needs.
Examples
Example 1: Add a Blazor Report Viewer to a Blazor Web App
Install the following package:
dotnet add package DevExpress.Blazor.Reporting.ViewerAdd a Razor page. Include a
DxReportViewercomponent and bind it to a report instance:@page "/Viewer" @rendermode InteractiveServer @using DevExpress.Blazor.Reporting <h3>Report Viewer</h3> <DxReportViewer @ref="reportViewer" Report="Report"> </DxReportViewer> @code { DxReportViewer? reportViewer; XtraReport Report = new TestReport(); }
Example 2: Hide Export Formats from ‘Export To’ Drop-Down List
The following code sample hides all export formats except PDF and Image:
@using DevExpress.Blazor.Reporting
@using DevExpress.XtraReports.UI
@using BlazorCustomization.PredefinedReports
@using DevExpress.Blazor.Reporting.Models
<div @ref="viewerComponent" style="width: 100%; height: 1000px;">
<DxReportViewer @ref="reportViewer"
Report="Report" />
</div>
@code {
DxReportViewer? reportViewer;
XtraReport Report = new TableReport();
private ElementReference viewerComponent;
string[] formats = new string[] { "Pdf", "Image" };
protected override void OnAfterRender(bool firstRender) {
if (firstRender) {
reportViewer.ExportModel.AvailableFormats
.RemoveAll(item => !formats.Contains(item.Name));
}
}
}
Evaluation Period, Pricing Options, and Licensing Terms
Whether you own a license or want to start a 30-day evaluation, download and register your DevExpress license key. To obtain your key, sign in to the DevExpress Download Manager with an existing DevExpress.com account or create a free account. For key registration instructions, see License Key for DevExpress Products.
If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation warnings and messages.
This package is included in the following commercial subscriptions:
- DevExpress Reporting Subscription
- DevExpress ASP.NET Subscription
- DevExpress DXperience Subscription
- DevExpress Universal Subscription
See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.
Related Components/Packages
DevExpress.AIIntegration.Blazor.Reporting.Viewer — AI-powered summarization and translation extensions for the Blazor Report Viewer.
dotnet add package DevExpress.AIIntegration.Blazor.Reporting.Viewer
DevExpress.Blazor.Reporting.JSBasedControls — JavaScript-based DevExpress Reporting Components. These components support Interactive Server and Interactive WebAssembly render modes and Blazor WebAssembly Standalone apps.
dotnet add package DevExpress.Blazor.Reporting.JSBasedControls
DevExpress.Blazor.Reporting.JSBasedControls.WebAssembly — JavaScript-based DevExpress Reporting Components for Blazor WebAssembly Hosted applications. These components require an ASP.NET Core backend with MVC controllers.
dotnet add package DevExpress.Blazor.Reporting.JSBasedControls.WebAssembly
Demos
Documentation
- Blazor Report Viewer Overview
- Get Started with Blazor Report Viewer (Blazor Server App)
- Overview of Blazor Reporting Components
Software Bill of Materials (SBOM)
To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.
See Also: Information Security | Security - What You Need to Know
Useful Online Resources
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- DevExpress.Blazor (= 26.1.5-pre-26235)
- DevExpress.Blazor.Viewer (= 26.1.5-pre-26235)
- DevExpress.Data (= 26.1.5-pre-26235)
- DevExpress.DataAccess (= 26.1.5-pre-26235)
- DevExpress.Drawing (= 26.1.5-pre-26235)
- DevExpress.Printing.Core (= 26.1.5-pre-26235)
- DevExpress.Reporting.Core (= 26.1.5-pre-26235)
- System.Reactive (>= 5.0.0)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on DevExpress.Blazor.Reporting.Viewer:
| Package | Downloads |
|---|---|
|
DevExpress.Blazor.PdfViewer
Target Platform/Framework: Web DevExpress Product Libraries Used: Blazor UI components (https://www.devexpress.com/blazor) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme) SBOM: https://sbom.devexpress.com/nuget/DevExpress.Blazor.PdfViewer/26.1.5-pre-26235 |
|
|
DevExpress.ExpressApp.ReportsV2.Blazor
Target Platform/Framework: Web, Mobile DevExpress Product Libraries Used: XAF (Cross-Platform .NET App UI & Web API) (https://www.devexpress.com/xaf) Available in the following DevExpress Subscription(s): Universal SBOM: https://sbom.devexpress.com/nuget/DevExpress.ExpressApp.ReportsV2.Blazor/26.1.5-pre-26235 |
|
|
DevExpress.Blazor.Reporting
Target Platform/Framework: Web DevExpress Product Libraries Used: .NET Reporting (https://www.devexpress.com/subscriptions/reporting) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting SBOM: https://sbom.devexpress.com/nuget/DevExpress.Blazor.Reporting/26.1.5-pre-26235 |
|
|
DevExpress.Blazor.Reporting.Viewer.de
Target Platform/Framework: Web DevExpress Product Libraries Used: .NET Reporting (https://www.devexpress.com/subscriptions/reporting) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting SBOM: https://sbom.devexpress.com/nuget/DevExpress.Blazor.Reporting.Viewer.de/26.1.5-pre-26235 |
|
|
DevExpress.AIIntegration.Blazor.Reporting.Viewer
Target Platform/Framework: Cross-Platform DevExpress Product Libraries Used: DevExpress AI-powered Extensions for OpenAI, Azure, Ollama, Semantic Kernel (https://www.devexpress.com/ai) Available in the following DevExpress Subscription(s): Universal, DXperience, ASP.NET & Blazor (includes DevExtreme), Reporting SBOM: https://sbom.devexpress.com/nuget/DevExpress.AIIntegration.Blazor.Reporting.Viewer/26.1.5-pre-26235 |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.5-pre-26235 | 262 | 8/26/2026 |
| 26.1.5-pre-26227 | 742 | 8/18/2026 |
| 26.1.4 | 6,693 | 8/7/2026 |
| 26.1.4-pre-26200 | 1,117 | 7/23/2026 |
| 26.1.4-pre-26190 | 872 | 7/14/2026 |
| 26.1.4-pre-26179 | 734 | 7/2/2026 |
| 26.1.3 | 25,533 | 6/18/2026 |
| 25.2.9 | 1,000 | 8/3/2026 |
| 25.2.8 | 8,526 | 6/10/2026 |
| 25.2.7 | 14,486 | 5/6/2026 |
| 25.2.6 | 16,542 | 4/7/2026 |
| 25.2.5 | 16,077 | 3/2/2026 |
| 25.2.4 | 9,246 | 2/3/2026 |
| 25.1.13 | 1,451 | 7/31/2026 |
| 25.1.12 | 3,862 | 6/10/2026 |
| 25.1.11 | 887 | 5/5/2026 |
| 25.1.10 | 904 | 4/6/2026 |
| 25.1.9 | 5,123 | 3/2/2026 |
| 25.1.8 | 3,329 | 1/16/2026 |