ngx-stimulsoft
TypeScript icon, indicating that this package has built-in type declarations

13.0.2 • Public • Published

NGX Stimulsoft

npm version GitHub issues GitHub stars GitHub license

Installation

First you need to install the npm module:

npm install ngx-stimulsoft --save

Usage

Import the TranslateModule:

Finally, you can use ngx-stimulsoft in your Angular project. You have to import NgxStimulsoftModule.forRoot() in the root NgModule of your application.

The forRoot static method is a convention that provides and configures services at the same time. Make sure you only call this method in the root module of your application, most of the time called AppModule. This method allows you to configure the NgxStimulsoftModule.

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { IStimulsoftConfig, NgxStimulsoftModule } from 'ngx-stimulsoft';

const stimulsoftConfig: Partial<IStimulsoftConfig> = {
  baseUrl: '/content/reports/',
  stimulsoftViewerJsUrl: '/content/stimulsoft/stimulsoft.viewer.js',
  stimulsoftReportsJsUrl: '/content/stimulsoft/stimulsoft.reports.js',
  stimulsoftDesignerJsUrl: '/content/stimulsoft/stimulsoft.designer.js',
  stimulsoftDesignerCssUrl: '/content/stimulsoft/stimulsoft.designer.office2013.darkgrayblue.css',
  stimulsoftViewerCssUrl: '/content/stimulsoft/stimulsoft.viewer.office2013.darkgrayblue.css',
};

@NgModule({
  imports: [BrowserModule, NgxStimulsoftModule.forRoot(stimulsoftConfig)],
  bootstrap: [AppComponent],
})
export class AppModule {}
SharedModule

If you use a SharedModule that you import in multiple other feature modules, you can export the NgxStimulsoftModule to make sure you don't have to import it in every module.

@NgModule({
  exports: [CommonModule, NgxStimulsoftModule],
})
export class SharedModule {}

/ngx-stimulsoft/

    Package Sidebar

    Install

    npm i ngx-stimulsoft

    Weekly Downloads

    2

    Version

    13.0.2

    License

    MIT

    Unpacked Size

    132 kB

    Total Files

    22

    Last publish

    Collaborators

    • mehrabisajad