OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--> | 3 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--> |
4 <SCRIPT src='../ChartNew.js'></script> | 4 <SCRIPT src='../ChartNew.js'></script> |
5 <SCRIPT src='../Add-ins/format.js'></script> | 5 <SCRIPT src='../Add-ins/format.js'></script> |
6 | 6 |
7 | 7 |
8 <SCRIPT> | 8 <SCRIPT> |
9 | 9 |
10 | 10 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 var myLine = new Chart(document.getElementById("canvas_line6").getContext("2
d")).Line(datedata,{fmtXLabel : "fmtdate mm/yyyy",graphTitle : "Format : fmtdate
mm/yyyy",animation : false}); | 76 var myLine = new Chart(document.getElementById("canvas_line6").getContext("2
d")).Line(datedata,{fmtXLabel : "fmtdate mm/yyyy",graphTitle : "Format : fmtdate
mm/yyyy",animation : false}); |
77 var myLine = new Chart(document.getElementById("canvas_line7").getContext("2
d")).Line(datedata,{fmtXLabel : "fmtdate yy/mm/dd",graphTitle : "Format : fmtdat
e yy/mm/dd",animation :false}); | 77 var myLine = new Chart(document.getElementById("canvas_line7").getContext("2
d")).Line(datedata,{fmtXLabel : "fmtdate yy/mm/dd",graphTitle : "Format : fmtdat
e yy/mm/dd",animation :false}); |
78 var myLine = new Chart(document.getElementById("canvas_line8").getContext("2
d")).Line(datedata,{fmtXLabel : "time",graphTitle : "Format : time",animation :f
alse}); | 78 var myLine = new Chart(document.getElementById("canvas_line8").getContext("2
d")).Line(datedata,{fmtXLabel : "time",graphTitle : "Format : time",animation :f
alse}); |
79 var myLine = new Chart(document.getElementById("canvas_line9").getContext("2
d")).Line(datedata,{fmtXLabel : "fmttime hh:mm:ss",graphTitle : "Format : fmttim
e hh:mm:ss",animation : false}); | 79 var myLine = new Chart(document.getElementById("canvas_line9").getContext("2
d")).Line(datedata,{fmtXLabel : "fmttime hh:mm:ss",graphTitle : "Format : fmttim
e hh:mm:ss",animation : false}); |
80 var myLine = new Chart(document.getElementById("canvas_line10").getContext("
2d")).Line(datedata,{fmtXLabel : "fmttime ss:mm:hh",graphTitle : "Format : fmtti
me ss:mm:hh",animation :false}); | 80 var myLine = new Chart(document.getElementById("canvas_line10").getContext("
2d")).Line(datedata,{fmtXLabel : "fmttime ss:mm:hh",graphTitle : "Format : fmtti
me ss:mm:hh",animation :false}); |
81 | 81 |
82 } | 82 } |
83 </script> | 83 </script> |
84 </body> | 84 </body> |
85 </html> | 85 </html> |
OLD | NEW |