Index: schedule/Module/Graph.js
===================================================================
--- schedule/Module/Graph.js	(revision 16200)
+++ schedule/Module/Graph.js	(revision 16201)
@@ -1,40 +1,54 @@
 function Graph()
 {
- var options = {
-			chart: {
-				renderTo: 'container' /* display to div Graph*/
+ var chart = new Highcharts.Chart({
+        chart: {
+            renderTo: 'Graph' /* display to div Graph*/
+        },
+        
+        xAxis: {
+		labels: {
+                    rotation: -45,
+                    align: 'right',
+					},
+            categories:["","","","","","","","19:00","20:00","21:00","22:00","23:00","24:00","1:00","2:00","3:00","4:00","5:00","6:00","7:00"]
+        },
+		series:[], /* array of Data  */
+		
+		remove:function()
+		{
+			return false;
+		},
+		
+		 exporting: {							/*--------------------*/
+            buttons: {							/*					  */
+                exportButton: {					/*		Export		  */
+                    menuItems: null,			/*		  to		  */
+                    onclick: function() {		/*			PNG.file  */
+                        this.exportChart();		/*--------------------*/
+                    }
+                }
+            }
+        },
+		
+		plotOptions:
+		{
+		series: {
+				marker: {
+                    enabled: false,
+					
+                },
 				
-			},
-			
-			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
-				}
-			}
-		}				
-	};
+            events: {
+                legendItemClick: function(event) {
+                    
+					
+                }
+            }
+				 
+        }
+		},
+		
+		
+		
+    });
 }
Index: schedule/Module/calendar.php
===================================================================
--- schedule/Module/calendar.php	(revision 16200)
+++ schedule/Module/calendar.php	(revision 16201)
@@ -205,5 +205,4 @@
 										}
 										
-										var chart = new Highcharts.Chart(options);
 										for(var src=0;src<i;src++)
 										{
