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

Side by Side Diff: polymer_0.4.0/bower_components/chartnewjs/Samples/stats_doughnut.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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 <SCRIPT src='..\ChartNew.js'></script> 3 <SCRIPT src='..\ChartNew.js'></script>
4 <SCRIPT src='..\Add-ins\stats.js'></script> 4 <SCRIPT src='..\Add-ins\stats.js'></script>
5 5
6 <SCRIPT> 6 <SCRIPT>
7 7
8 defCanvasWidth=1200; 8 defCanvasWidth=1200;
9 defCanvasHeight=600; 9 defCanvasHeight=600;
10 10
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 stats(mydata1,varcrosstxt); 115 stats(mydata1,varcrosstxt);
116 116
117 document.write("<canvas id=\"canvas_pie\" height=\""+defCanvasHeight+"\" width =\""+defCanvasWidth+"\"></canvas>"); 117 document.write("<canvas id=\"canvas_pie\" height=\""+defCanvasHeight+"\" width =\""+defCanvasWidth+"\"></canvas>");
118 118
119 window.onload = function() { 119 window.onload = function() {
120 var myBar = new Chart(document.getElementById("canvas_pie").getContext("2d ")).Doughnut(mydata1,varcrosstxt); 120 var myBar = new Chart(document.getElementById("canvas_pie").getContext("2d ")).Doughnut(mydata1,varcrosstxt);
121 } 121 }
122 </script> 122 </script>
123 </body> 123 </body>
124 </html> 124 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698