The menuTitle property (string) specifies the text or HTML displayed in the menu title above the first menu item.
DayPilot.Menu.menuTitlenullThe menu title is shown only when showMenuTitle is enabled.
const menu = new DayPilot.Menu({
showMenuTitle: true,
menuTitle: "Available actions",
items: [
{ text: "Details" },
{ text: "Delete" }
],
// ...
});