startTimezone String (default: undefined)

The timezone of the start date. If not specified the timezone will be used.

The complete list of the supported timezones is available in the List of IANA time zones Wikipedia page.

Example - set the end timezone of an event

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