slot

Returns a slot based on the specified from and to values.

Parameters

from String|Number|Date

The slot from value.

to String|Number|Date optional

The slot to value. If a to value is not specified, then the from value will be used.

limit Boolean optional

A boolean value indicating whether the slot should be limited to the current range. By default the range is limited.

Returns

kendo.geometry.Rect|kendo.geometry.Arc a rectangle or arc(for radar category and polar x axis) representing the slot.

Example - get axis slot

var slot = axis.slot(1, 2);
In this article