New to Kendo UI for Angular? Start a free 30-day trial
TooltipsModule
Represents the NgModule definition for the Tooltips components.
ts
import { TooltipsModule } from '@progress/kendo-angular-tooltip';
// The browser platform with a compiler
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { NgModule } from '@angular/core';
// Import the app component
@NgModule{{
declarations: [AppComponent], // declare app component
imports: [BrowserModule, TooltipsModule], // import TooltipsModule module
bootstrap: [AppComponent]
}}
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);