currentTimeMarker Boolean|Object (default: true)

If set to false the "current time" marker of the scheduler would not be displayed.

Example - disable "current time" marker

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date(),
  currentTimeMarker: false,
  views: [
    "day", "week", "workWeek"
  ]
});
</script>

currentTimeMarker.updateInterval Number (default: 10000)

The update interval of the "current time" marker, in milliseconds.

Example - set the update interval of the "current time" marker

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date(),
  currentTimeMarker: {
    updateInterval: 100
  },
  views: [
    "day", "week", "workWeek"
  ]
});
</script>

currentTimeMarker.useLocalTimezone Boolean (default: true)

If set to false the "current time" marker would be displayed using the scheduler timezone.

Example - set "current time" marker to use scheduler timezone

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date(),
  timezone: "Etc/UTC",
  currentTimeMarker: {
    useLocalTimezone: false
  },
  views: [
    "day", "week", "workWeek"
  ]
});
</script>
In this article