I am designing a new application to University so the want to design a control that contains: Hours as columns(09:00, 09:30 ,10:00 .....) and week days on rows (Saturday,Sunday,Monday ....)
* The Example of old system is attached
This is possible, but you need to Pro version (http://www.daypilot.org/buy.html).
If you switch to the "timesheet" view using ViewType="Days" it will display 24 hours of day on the X axis and days on the Y axis:
http://doc.daypilot.org/scheduler/timesheet/
See also a demo here:
http://www.daypilot.org/demo/Scheduler/Timesheet.aspx
You can specify the number of days to be displayed on the vertical (Y) axis using Days property, in your case use Days="7".
You can customize the day headers (Y axis) using BeforeResHeaderRender event:
http://doc.daypilot.org/scheduler/row-header-customization/
You can use it to change the default day header HTML ("5/12/2014") to the day name ("Monday").