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

Side by Side Diff: polymer_0.5.4/bower_components/chartnewjs/Samples/animation_pie.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 <!--[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 function setColor(area,data,config,i,j,animPct,value) 8 function setColor(area,data,config,i,j,animPct,value)
9 { 9 {
10 if(value > 35)return("rgba(220,0,0,"+animPct); 10 if(value > 35)return("rgba(220,0,0,"+animPct);
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 var myPie = new Chart(document.getElementById("canvas_Pie2").getContext("2d" )).Pie(mydata2,opt2); 226 var myPie = new Chart(document.getElementById("canvas_Pie2").getContext("2d" )).Pie(mydata2,opt2);
227 var myPie = new Chart(document.getElementById("canvas_Pie3").getContext("2d" )).Pie(mydata2,opt3); 227 var myPie = new Chart(document.getElementById("canvas_Pie3").getContext("2d" )).Pie(mydata2,opt3);
228 var myPie = new Chart(document.getElementById("canvas_Pie3b").getContext("2d ")).Pie(mydata2,opt3b); 228 var myPie = new Chart(document.getElementById("canvas_Pie3b").getContext("2d ")).Pie(mydata2,opt3b);
229 var myPie = new Chart(document.getElementById("canvas_Pie3c").getContext("2d ")).Pie(mydata2,opt3c); 229 var myPie = new Chart(document.getElementById("canvas_Pie3c").getContext("2d ")).Pie(mydata2,opt3c);
230 230
231 } 231 }
232 232
233 </script> 233 </script>
234 </body> 234 </body>
235 </html> 235 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698