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

Side by Side Diff: polymer_0.5.0/bower_components/chartnewjs/Samples/add-ins_format.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 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--> 3 <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]-->
4 <SCRIPT src='../ChartNew.js'></script> 4 <SCRIPT src='../ChartNew.js'></script>
5 <SCRIPT src='../Add-ins/format.js'></script> 5 <SCRIPT src='../Add-ins/format.js'></script>
6 6
7 7
8 <SCRIPT> 8 <SCRIPT>
9 9
10 10
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 var myLine = new Chart(document.getElementById("canvas_line6").getContext("2 d")).Line(datedata,{fmtXLabel : "fmtdate mm/yyyy",graphTitle : "Format : fmtdate mm/yyyy",animation : false}); 76 var myLine = new Chart(document.getElementById("canvas_line6").getContext("2 d")).Line(datedata,{fmtXLabel : "fmtdate mm/yyyy",graphTitle : "Format : fmtdate mm/yyyy",animation : false});
77 var myLine = new Chart(document.getElementById("canvas_line7").getContext("2 d")).Line(datedata,{fmtXLabel : "fmtdate yy/mm/dd",graphTitle : "Format : fmtdat e yy/mm/dd",animation :false}); 77 var myLine = new Chart(document.getElementById("canvas_line7").getContext("2 d")).Line(datedata,{fmtXLabel : "fmtdate yy/mm/dd",graphTitle : "Format : fmtdat e yy/mm/dd",animation :false});
78 var myLine = new Chart(document.getElementById("canvas_line8").getContext("2 d")).Line(datedata,{fmtXLabel : "time",graphTitle : "Format : time",animation :f alse}); 78 var myLine = new Chart(document.getElementById("canvas_line8").getContext("2 d")).Line(datedata,{fmtXLabel : "time",graphTitle : "Format : time",animation :f alse});
79 var myLine = new Chart(document.getElementById("canvas_line9").getContext("2 d")).Line(datedata,{fmtXLabel : "fmttime hh:mm:ss",graphTitle : "Format : fmttim e hh:mm:ss",animation : false}); 79 var myLine = new Chart(document.getElementById("canvas_line9").getContext("2 d")).Line(datedata,{fmtXLabel : "fmttime hh:mm:ss",graphTitle : "Format : fmttim e hh:mm:ss",animation : false});
80 var myLine = new Chart(document.getElementById("canvas_line10").getContext(" 2d")).Line(datedata,{fmtXLabel : "fmttime ss:mm:hh",graphTitle : "Format : fmtti me ss:mm:hh",animation :false}); 80 var myLine = new Chart(document.getElementById("canvas_line10").getContext(" 2d")).Line(datedata,{fmtXLabel : "fmttime ss:mm:hh",graphTitle : "Format : fmtti me ss:mm:hh",animation :false});
81 81
82 } 82 }
83 </script> 83 </script>
84 </body> 84 </body>
85 </html> 85 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698