| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 | 2 |
| 3 | 3 |
| 4 | 4 |
| 5 | 5 |
| 6 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--><SCRIPT
src='ChartNew.js'></script> | 6 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--><SCRIPT
src='../ChartNew.js'></script> |
| 7 | 7 |
| 8 | 8 |
| 9 <SCRIPT> | 9 <SCRIPT> |
| 10 | 10 |
| 11 defCanvasWidth=1200; | 11 defCanvasWidth=1200; |
| 12 defCanvasHeight=600; | 12 defCanvasHeight=600; |
| 13 | 13 |
| 14 | 14 |
| 15 | 15 |
| 16 var mydata1 = { | 16 var mydata1 = { |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 var myLine = new Chart(document.getElementById("canvas_polararea").getContex
t("2d")).PolarArea(mydata2,setopts); | 148 var myLine = new Chart(document.getElementById("canvas_polararea").getContex
t("2d")).PolarArea(mydata2,setopts); |
| 149 var myLine = new Chart(document.getElementById("canvas_pie").getContext("2d"
)).Pie(mydata2,setopts); | 149 var myLine = new Chart(document.getElementById("canvas_pie").getContext("2d"
)).Pie(mydata2,setopts); |
| 150 var myLine = new Chart(document.getElementById("canvas_doughnut").getContext
("2d")).Doughnut(mydata2,setopts); | 150 var myLine = new Chart(document.getElementById("canvas_doughnut").getContext
("2d")).Doughnut(mydata2,setopts); |
| 151 } | 151 } |
| 152 | 152 |
| 153 } | 153 } |
| 154 | 154 |
| 155 </script> | 155 </script> |
| 156 </body> | 156 </body> |
| 157 </html> | 157 </html> |
| OLD | NEW |