New to Kendo UI for AngularStart a free 30-day trial

TooltipSettings

Provides a global configuration for the Kendo UI Tooltip. Once injected through the AppComponent constructor, the configuration properties can be overridden.

ts
import { TooltipSettings } from '@progress/kendo-angular-tooltip';

@Component({
   selector: 'my-app',
   template: `
     <div kendoTooltip>
         <button title="Saves the current document">Save</button>
     </div>`,
   providers: [{
       provide: TooltipSettings,
       useFactory: (): TooltipSettings => ({
         // Override default values of tooltips if wanted
         position: 'right'
       })
   }]
})
export class AppComponent { }
NameTypeDefaultDescription

callout?

boolean

Specifies if the Тooltip will display a callout arrow.

The possible values are:

  • true (default)
  • false

closeTitle

string

Specifies the title of the close button.

position?

Position

Specifies the position of the Tooltip that is relative to the anchor element.

The possible values are:

  • top (default)
  • bottom
  • left
  • right

showAfter?

number

Specifies the delay in milliseconds before the Tooltip is shown.

  • 100 (default) milliseconds.

showOn?

ShowOption

Specifies when the Тooltip will be rendered.

The possible values are:

  • hover (default)
  • click
  • none
Not finding the help you need?
Contact Support