Display image on Calendar

Is it possible to display and image on the calender as well as text. We are looking to use this control in a project and this is a pre-requisite.

Hello,
you can define contents of the event boxes with scheduler’s templates, they can return any html, including the image elements
The template can be defined either on client or on server side:
Model:public class Event{ ... public string ImagePath{get;set;} }
code:
c#var scheduler = new DHXScheduler(); scheduler.Templates.event_text = "<img src='{ImagePath}'/>";or js:scheduler.templates.event_text = function(start, end, event){ return "<img src='" + event.ImagePath + "'/>"; }