Angular schematics is a workflow tool that allows you generate component, modules, and resolve dependency issues. The main goal of the schematics is ease of use and development in angular environment.
EJ2 Tooltip supports Angular schematic’s module injection, component generation, automation dependency installation, styles imports, etc.
Note: Angular schematics supports only from the Angular CLI v6. So, check your version by running
ng --version
. If it is below version 6, update your CLI by running the following command:npm install -g @angular/cli
.
In order to work with Angular schematics, create an Angular CLI application. Run the following command to create a CLI application.
ng new angular-application
After running the above command and all the dependency modules installed, we can generate EJ2 Tooltip component using schematics.
Using schematics, we can perform dependency and module injection of the EJ2 Popups package
@syncfusion/ej2-angular-popups
automatically. Run the following command in the root of the application.
ng add @syncfusion/ej2-angular-popups --modules=tooltip
The above command will do the following,
@syncfusion/ej2-angular-popups
package, and adds an entry in package.json
file.TooltipModule
module in the app.module.ts
, and adds an entry in the import
property of the @NgModule
decorator.Angular Schematics can be used to generate component, module file, etc. In the same way, we can generate Tooltip components can also be generated.
By using the Schematics to generate EJ2 Tooltip, the time for configuring components is significantly reduced and it is made ready for development immediately. To generate EJ2 Tooltip component with specific features, refer to the following table.
The general syntax for the ng generate command is
ng generate @syncfusion/<component-package-name>:<componentName-featureName> --name=<your-desired-name>
Feature Name | Schematics command |
---|---|
Default Tooltip | ng generate @syncfusion/ej2-angular-popups:tooltip-default --name=default-tooltip |
Template Tooltip | ng generate @syncfusion/ej2-angular-popups:tooltip-template --name=template-tooltip |
The above commands will do the following,
src/app
with folder name of the name
property passed.app.module.ts
file, and add an entry in the declarations
array in the @NgModule
decorator.Note: It is not required to run the above commands only after the
ng add @syncfusion/ej2-angular-popups
, but it is required to have@syncfusion/ej2-angular-popups
installed.