You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

stimulsoft-dashboards-js-angular

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stimulsoft-dashboards-js-angular

Stimulsoft Dashboards.JS is a dashboards tool for Angular

2025.3.2
latest
npmnpm
Version published
Weekly downloads
12
-88.35%
Maintainers
1
Weekly downloads
 
Created
Source

Stimulsoft Dashboards.JS for React

Stimulsoft Dashboards.JS is a full-featured tool used to create dashboards and reports for the JavaScript platform. To generate and view dashboards and reports, you need any web browser that supports HTML and JavaScript. It can work as Client-Side when no server side is required, as well as Server-Side that can be used on the server side.

How to install

Create a project folder and install Dashboards.JS module using the specified command:

npm install stimulsoft-dashboards-js-react

Designer Component

The Designer component is a React component for integrating Stimulsoft Dashboards Designer into your React applications. It provides a wide range of properties and event handlers to customize the behavior and appearance of the designer.

Usage

Here is an example of how to use the Designer component in your React application:

import { Component } from '@angular/core';
import { Designer, Stimulsoft } from "stimulsoft-dashboards-js-angular/designer";

@Component({
  selector: 'app-root',
  template: `
    <sti-designer
      [report]="report"
      [visible]="true"
      [options]="options"
      [id]="'designer1'"
      (onSaveReport)="handleSaveDashboard($event)"
    ></sti-designer>
  `,
})
export class AppComponent {
  report = new Stimulsoft.Report.StiReport();
  options = new Stimulsoft.Designer.StiDesignerOptions();

  handleSaveDashboard(args: any): void {
    console.log('Saving dashboard:', args);
  }
}

Properties

The Designer component accepts the following properties:

PropertyDescription
reportThe dashboard object to be edited in the designer.
visibleDetermines whether the designer is visible.
optionsConfiguration options for the designer.
idUnique identifier for the designer instance.

Events

The Designer component provides the following event handlers:

EventDescription
onPrepareVariablesTriggered to prepare variables.
onBeginProcessDataTriggered at the beginning of data processing.
onEndProcessDataTriggered at the end of data processing.
onCreateReportTriggered when a new dashboard is created.
onCloseReportTriggered when a dashboard is closed.
onOpenReportTriggered when a dashboard is opened.
onOpenedReportTriggered after a dashboard is opened.
onSaveReportTriggered when a dashboard is saved.
onSaveAsReportTriggered when a dashboard is saved as a new file.
onPreviewReportTriggered when a dashboard is previewed.
onExitTriggered when the designer is exited.
onAssignedReportTriggered when a dashboard is assigned to the designer.

Viewer Component

The Viewer component is a React component for integrating Stimulsoft Dashboards Viewer into your React applications. It allows you to display and interact with dashboards.

Usage

Here is an example of how to use the Viewer component in your React application:

import { Component } from '@angular/core';
import { Viewer, Stimulsoft } from "stimulsoft-dashboards-js-angular/viewer";

@Component({
  selector: 'app-root',
  template: `
    <sti-viewer
      [report]="report"
      [visible]="true"
      [options]="options"
      [id]="'viewer1'"
      (onPrintReport)="handlePrintDashboard($event)"
    ></sti-viewer>
  `,
})
export class AppComponent {
  report = new Stimulsoft.Report.StiReport();
  options = new Stimulsoft.Viewer.StiViewerOptions();

  handlePrintDashboard(args: any): void {
    console.log('Printing dashboard:', args);
  }
}

Properties

The Viewer component accepts the following properties:

PropertyDescription
reportThe dashboard object to be displayed in the viewer.
visibleDetermines whether the viewer is visible.
optionsConfiguration options for the viewer.
idUnique identifier for the viewer instance.

Events

The Viewer component provides the following event handlers:

EventDescription
onPrepareVariablesTriggered to prepare variables.
onBeginProcessDataTriggered at the beginning of data processing.
onEndProcessDataTriggered at the end of data processing.
onPrintReportTriggered when a dashboard is printed.
onBeginExportReportTriggered at the beginning of dashboard export.
onEndExportReportTriggered at the end of dashboard export.
onInteractionTriggered during dashboard interaction.
onEmailReportTriggered when a dashboard is emailed.
onDesignReportTriggered when a dashboard is sent to the designer.
onShowReportTriggered when a dashboard is shown.
onOpenReportTriggered when a dashboard is opened.
onOpenedReportTriggered after a dashboard is opened.

Integration

Our dashboards and report generator is excellent for working in any JavaScript application. Components are optimized to work with most popular platforms such as Node.js, Angular, React, Vue.js, and others. For integration you need to install only one package from the NPM repository, or download the package from our website to a computer and add several scripts and css-styles to the project. All other things you can find in our, on pure JavaScript developed dashboards and report builder.

Live Demo

We prepared many templates of dashboards and reports that you can explore and edit in our online demo. Choose the template you need, connect your data, and create rich reports and analytical dashboards – the solution is ready. Try the Live Demo

More about product

In Stimulsoft Dashboards.JS, we have included a complete set of tools and components to design simple and complex dashboards and reports. Texts, images, charts, barcodes, many preset styles, grouping and filtering, interactive dashboards and reports, and much more. You can work with dashboards and reports and their components directly from the JavaScript code. Read more about Stimulsoft Dashboards.JS.

Video and Documentation

We provide User Manuals and Class References intended to give technical assistance to users of our dashboards and reporting tool. Find more information in the Online Documentation.

Also, we prepared many videos about the working of our software. Watch videos on our YouTube channel.

Download

License Info

Online Store

Keywords

Stimulsoft

FAQs

Package last updated on 18 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts