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

Reporting for React

  • 2 minutes to read

Topics in this section describe how to create reporting applications based on the React framework.

Document Viewer

Integration

Customization

Report Designer

Integration

Localization

Client-Side API

To access the client-side Reporting API in React applications, use the following objects:

Client-side events in React are handled with callbacks specified in the Knockout bindings.

Event names and data in event arguments passed to the Angular callback handler functions are the same as events in an ASP.NET Core application. Review the following help topics with information on ASP.NET Core client-side events:

For more information on Knockout bindings, review the following help topics:

The following code snippet illustrates how to use the CustomizeExportOptions callback to remove the XLS format from the Export To drop-down list and from the Export Options panel:

import { ExportFormatID } from 'devexpress-reporting/dx-webdocumentviewer'
import React from "react";

import ko from "knockout";

class ReportViewer extends React.Component {
    constructor(props) {
        super(props);
// ...

        this.callbacks = {
            CustomizeExportOptions: function(s,e) {
                e.HideFormat(ExportFormatID.XLS);
            }
        };
    }
    componentDidMount() {
      ko.applyBindings(
        {
          //...
          callbacks: this.callbacks
        },
        this.refs.viewer
      );
    }

// ...
}
export default ReportViewer;