OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 | 2 |
3 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--><SCRIPT
src='../ChartNew.js'></script> | 3 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--><SCRIPT
src='../ChartNew.js'></script> |
4 | 4 |
5 | 5 |
6 <SCRIPT> | 6 <SCRIPT> |
7 | 7 |
8 defCanvasWidth=1200; | 8 defCanvasWidth=1200; |
9 defCanvasHeight=1800; | 9 defCanvasHeight=1800; |
10 | 10 |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 79 |
80 document.write("<canvas id=\"canvas_Line1\" height=\""+defCanvasHeight+"\" w
idth=\""+defCanvasWidth+"\"></canvas>"); | 80 document.write("<canvas id=\"canvas_Line1\" height=\""+defCanvasHeight+"\" w
idth=\""+defCanvasWidth+"\"></canvas>"); |
81 window.onload = function() { | 81 window.onload = function() { |
82 | 82 |
83 | 83 |
84 var myLine = new Chart(document.getElementById("canvas_Line1").getContext("2
d")).Line(mydata1,opt1); | 84 var myLine = new Chart(document.getElementById("canvas_Line1").getContext("2
d")).Line(mydata1,opt1); |
85 } | 85 } |
86 </script> | 86 </script> |
87 </body> | 87 </body> |
88 </html> | 88 </html> |
OLD | NEW |