Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(125)

Side by Side Diff: polymer_0.5.4/bower_components/chartnewjs/Samples/issue211.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698