recurrenceRule String
The recurrence rule describing the recurring pattern of the event.
Example - get the event recurrence rule
<script>
var event = new kendo.data.SchedulerEvent({
id: 1,
start: new Date("2013/9/2 12:00"),
end: new Date("2013/9/2 12:30"),
title: "Lunch",
recurrenceRule: "FREQ=DAILY"
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(event.recurrenceRule); // outputs "FREQ=DAILY"
</script>