Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16208)
+++ schedule/Module/calendar.php	(revision 16209)
@@ -205,7 +205,44 @@
 										}
 										
-										Graph();
-										function Charts(options)
+										
+										function Charts()
 										{
+											 var options = {
+													chart: {
+														renderTo: 'container' /* display to div Graph*/
+														
+													},
+													
+													xAxis: {
+														categories:["12PM","1PM","2PM","3PM","4PM","5PM","6PM","7PM","8PM","9PM","10PM","11PM","12AM","1AM","2AM","3AM","4AM","5AM","6AM","7AM","8AM","9AM","10AM","12PM"]
+													},
+													series:[], /* array of Data  */
+													
+													remove:function()
+													{
+														return false;
+													},
+													
+													 exporting: {							/*--------------------*/
+														buttons: {							/*					  */
+															exportButton: {					/*		Export		  */
+																menuItems: null,			/*		  to		  */
+																onclick: function() {		/*			PNG.file  */
+																	this.exportChart();		/*--------------------*/
+																}
+															}
+														}
+													},
+													plotOptions : {
+													
+													series : {
+															lineWidth: 3,
+													
+														marker : {
+															enabled:false
+														}
+													}
+												}				
+											};
 											var chart=new Highcharts.Chart(options);
 											for(var src=0;src<i;src++)
@@ -224,7 +261,7 @@
 												
 											}
-											return chart;
+											return Charts;
 										}
-										Charts();
+										
 										
 									}
@@ -235,4 +272,5 @@
 								
 							}
+							Charts();
 							$('#Graph').load('chart.php?day='+day+"&month="+month+"&year="+year);
 							
