The cornerHtml property (string) sets the HTML rendered in the upper-left corner of the Gantt chart.
The corner is rendered during init() and during update().
DayPilot.Gantt.cornerHtml
""
const gantt = new DayPilot.Gantt("dp", {
cornerHtml: "2015",
// ...
});
gantt.init();
<daypilot-gantt [config]="config"></daypilot-gantt>
config: DayPilot.GanttConfig = {
cornerHtml: "2015",
// ...
};
<DayPilotGantt
cornerHtml="2015"
{/* ... */}
/>
<DayPilotGantt cornerHtml="2015" <!-- ... --> />