DevExtreme Angular - Overview

The Tooltip widget displays a tooltip for a specified element on the page.

View Demo

The following code creates a simple Tooltip on your page and attaches it to another element (in this example, to an image).

HTML
TypeScript
  • <img id="image" src="https://url/to/an/image" />
  • <dx-tooltip
  • target="#image"
  • showEvent="dxhoverstart"
  • hideEvent="dxhoverend">
  • <div *dxTemplate="let data of 'content'">
  • <p>Tooltip content</p>
  • </div>
  • </dx-tooltip>
  • import { DxTooltipModule } from "devextreme-angular";
  • // ...
  • export class AppComponent {
  • // ...
  • }
  • @NgModule({
  • imports: [
  • // ...
  • DxTooltipModule
  • ],
  • // ...
  • })
See Also