New to Kendo UI for Angular? Start a free 30-day trial
TooltipModule
Represents the NgModule definition for the Tooltip component.
The package exports:
KendoTooltipDirective
—The Tooltip directive class.
ts
// Import the Tooltip module
import { TooltipModule } 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, TooltipModule], // import TooltipModule module
bootstrap: [AppComponent]
}}
export class AppModule {}
// Compile and launch the module
platformBrowserDynamic().bootstrapModule(AppModule);