diff --git a/knowledge-base/scheduler-custom-appointment-tooltips.md b/knowledge-base/scheduler-custom-appointment-tooltips.md
index 09d15667b..1d0d7ea54 100644
--- a/knowledge-base/scheduler-custom-appointment-tooltips.md
+++ b/knowledge-base/scheduler-custom-appointment-tooltips.md
@@ -1,8 +1,8 @@
---
-title: Custom Appointment Tooltips
-description: How to customize the Appointment Tooltips.
+title: Custom Scheduler Appointment Tooltips
+description: Learn how to customize the appointment tooltips in the Telerik Scheduler for Blazor.
type: how-to
-page_title: Custom Appointment Tooltips
+page_title: How to Display Custom Scheduler Appointment Tooltips
slug: scheduler-kb-custom-appointment-tooltips
position:
tags:
@@ -22,9 +22,152 @@ res_type: kb
## Description
-How to customize the Appointment Tooltips? How to add more content in the Appointment Tooltips?
-
+How to customize the Scheduler appointment tooltips? How to show more content in the appointment tooltips?
## Solution
-An example is available in the following project: [https://github.com/telerik/blazor-ui/tree/master/scheduler/appointment-tooltips](https://github.com/telerik/blazor-ui/tree/master/scheduler/appointment-tooltips).
\ No newline at end of file
+1. Define a [Scheduler `ItemTemplate`](slug:scheduler-templates-appointment) with a `title` HTML attribute or one or more `data` attributes.
+1. Define a [Telerik Tooltip component for Blazor](slug:tooltip-overview) that targets all appointments by a `class` or some other selector.
+1. (optional) Define a [Tooltip `Template`](slug:tooltip-template) that consumes the `data` attributes from the Scheduler item template.
+
+>caption Display Telerik Tooltips over Scheduler appointments
+
+````RAZOR
+
+
+
+
+
+
+
+ @{ var dataItem = (Appointment)context; }
+