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

Unified Diff: bower_components/chartnewjs/Samples/issue_23.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 side-by-side diff with in-line comments
Download patch
Index: bower_components/chartnewjs/Samples/issue_23.html
diff --git a/bower_components/chartnewjs/Samples/issue_23.html b/bower_components/chartnewjs/Samples/issue_23.html
deleted file mode 100644
index 4beb5f2f203d276455684f0f3cb2e82b8955fb59..0000000000000000000000000000000000000000
--- a/bower_components/chartnewjs/Samples/issue_23.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
- <head>
- <meta http-equiv="content-type" content="text/html; charset=windows-1250">
- <meta name="generator" content="PSPad editor, www.pspad.com">
- <title></title>
- <!--[if lte IE 8]><SCRIPT src='source/excanvas.js'></script><![endif]--><SCRIPT src='../ChartNew.js'></script>
- </head>
- <body>
- <canvas id="mycanvas" height="600" width="800"></canvas>
- <script>
- var BarLineData = {
- labels : ["January","February","March","April","May","June","July"],
- datasets : [
- {
- type: "Line",
- fill: false,
- strokeColor : "rgb(230, 14, 14)",
- pointColor : "rgb(205, 151, 155)",
- pointStrokeColor : "#f56691",
- data : [0.30,0.44,0.42,0.19,0.90,0.37,1.20],
- title : "line 1"
- },
- {
- fillColor : "rgba(220,220,220,0.5)",
- strokeColor : "rgba(220,220,220,1)",
- pointColor : "rgba(220,220,220,1)",
- pointStrokeColor : "#fff",
- data : [0.65,0.59,0.90,0.81,0.56,0.55,0.40],
- title : "Bar 1"
- },
- {
- fillColor : "rgba(151,187,205,0.5)",
- strokeColor : "rgba(151,187,205,1)",
- pointColor : "rgba(151,187,205,1)",
- pointStrokeColor : "#fff",
- data : [0.28,0.48,0.40,0.19,0.96,0.27,1.00],
- title : "Bar 2"
- },
- {
- type: "Line",
- fill: false,
- fillColor : "rgba(151, 205, 172, 0.5)",
- strokeColor : "rgb(87, 147, 106)",
- pointColor : "rgb(151, 205, 172)",
- pointStrokeColor : "#fff",
- data : [0.42,0.58,0.44,0.22,0.84,0.17,0.70],
- title : "Line 3"
- },
- ]
-}
-
- var opts= {};
-
- window.onload = function() {
- var myBar = new Chart(document.getElementById("mycanvas").getContext("2d")).Bar(BarLineData,opts);
- }
- </script>
-
- </body>
-</html>
« no previous file with comments | « bower_components/chartnewjs/Samples/issue_130.html ('k') | bower_components/chartnewjs/Samples/issue_4.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698