# Upgrade guide for Scheduler v3.1.5

## Customising the content of ScheduleTooltip generateTipContent

ScheduleTooltip´s `getHoverTipHtml` is now deprecated for public use and `generateTipContent` is the method to use to
fully control the markup of each hovered date/resource point in the schedule. Example:

```javascript
const scheduler = new Scheduler({
    features : {
        scheduleTooltip : {
            generateTipContent({ date, event, resourceRecord }) {
                return `
                    <dl>
                        <dt>Date</dt><dd> ${date}</dd>
                        <dt>Resource</dt><dd> ${resourceRecord.name}</dd>
                    </dl>
                `;
            }
        }
    }
});
```



<p class="last-modified">Last modified on 2023-10-26 8:19:20</p>