The showMenuTitle property (boolean) specifies whether the menu title is visible above the first menu item.
DayPilot.Menu.showMenuTitlefalseThe title text or HTML is specified using the menuTitle property.
const menu = new DayPilot.Menu({
showMenuTitle: true,
menuTitle: "Available actions",
items: [
{ text: "Details" },
{ text: "Delete" }
],
// ...
});