title String (default: "")

The title of the event which is displayed by the scheduler widget.

Example - set the title of an event

<script>
var event = new kendo.data.SchedulerEvent({
    id: 1,
    title: "Lunch",
    start: new Date("2013/4/4 12:00"),
    end: new Date("2013/4/4 13:00")
});
</script>
In this article