Index: /schedule/Module/Graph.js
===================================================================
--- /schedule/Module/Graph.js	(revision 16202)
+++ /schedule/Module/Graph.js	(revision 16203)
@@ -1,54 +1,41 @@
 function 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,
-					
-                },
+ var options = {
+			chart: {
+				renderTo: 'container' /* display to div Graph*/
 				
-            events: {
-                legendItemClick: function(event) {
-                    
-					
-                }
-            }
-				 
-        }
-		},
-		
-		
-		
-    });
+			},
+			
+			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);
 }
