returns dimension of the specified date cell
| date | Date|string | Date object or string in the current date format | 
| object | cell dimension | 
var dim = myCalendar.getCellDimension("2013-01-01"); 
console.log(dim);
// result:
{
    x: 100, // x-coord
    y: 100, // y-coord
    w: 27,  // width
    h: 24   // height
}
if the cell is located out of the rendered month - dim is null
Back to top