Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 15927)
+++ schedule/Module/calendar.php	(revision 15928)
@@ -72,13 +72,33 @@
 							  if (xmlhttp.readyState==4 && xmlhttp.status==200)
 								{
-									/*var options = {
-											chart: {
-												renderTo: 'container'
-											},
-											xAxis: {
-												type:'datetime'
-											},
-											series: []
-									};*/
+									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();		/*--------------------*/
+													}
+												}
+											}
+										}
+										
+										
+										
+									};
 									var lines = xmlhttp.responseText.split('\n');
 									var arr;
@@ -144,48 +164,10 @@
 									document.getElementById('data').innerHTML=finaldata;
 									
-									/*options.series.push({
+									options.series.push({
 									
-										data:[finaldata]
-									});*/						
-									//var chart = new Highcharts.Chart(options);
-									var data1= {
-										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();		/*--------------------*/
-													}
-												}
-											}
-										}
-										
-										
-										
-									};
-
-									// the button handler
-										  newdata1=[21,4],[5,6],[7,8],[3,41];
-										
-										
-											data1.series.push({
-												data: [newdata1]
-											});
+										data:newdata
+									});						
+									var chart = new Highcharts.Chart(options);
 									
-									var chart = new Highcharts.Chart(data1);
 									
 										
