-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tiraeth
committed
Nov 1, 2012
1 parent
df9eb94
commit 38a1cdd
Showing
5 changed files
with
177 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
<!doctype html> | ||
<head> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | ||
<script src="https://raw.github.com/DmitryBaranovskiy/raphael/300aa589f5a0ba7fce667cd62c7cdda0bd5ad904/raphael-min.js"></script> | ||
<script src="../morris.js"></script> | ||
<script src="lib/prettify.js"></script> | ||
<script src="lib/example.js"></script> | ||
<link rel="stylesheet" href="lib/example.css"> | ||
<link rel="stylesheet" href="lib/prettify.css"> | ||
</head> | ||
<body> | ||
<h1>Time Events</h1> | ||
<div id="graph"></div> | ||
<pre id="code" class="prettyprint linenums"> | ||
var week_data = [ | ||
{"period": "2011 W27", "licensed": 3407, "sorned": 660}, | ||
{"period": "2011 W26", "licensed": 3351, "sorned": 629}, | ||
{"period": "2011 W25", "licensed": 3269, "sorned": 618}, | ||
{"period": "2011 W24", "licensed": 3246, "sorned": 661}, | ||
{"period": "2011 W23", "licensed": 3257, "sorned": 667}, | ||
{"period": "2011 W22", "licensed": 3248, "sorned": 627}, | ||
{"period": "2011 W21", "licensed": 3171, "sorned": 660}, | ||
{"period": "2011 W20", "licensed": 3171, "sorned": 676}, | ||
{"period": "2011 W19", "licensed": 3201, "sorned": 656}, | ||
{"period": "2011 W18", "licensed": 3215, "sorned": 622}, | ||
{"period": "2011 W17", "licensed": 3148, "sorned": 632}, | ||
{"period": "2011 W16", "licensed": 3155, "sorned": 681}, | ||
{"period": "2011 W15", "licensed": 3190, "sorned": 667}, | ||
{"period": "2011 W14", "licensed": 3226, "sorned": 620}, | ||
{"period": "2011 W13", "licensed": 3245, "sorned": null}, | ||
{"period": "2011 W12", "licensed": 3289, "sorned": null}, | ||
{"period": "2011 W11", "licensed": 3263, "sorned": null}, | ||
{"period": "2011 W10", "licensed": 3189, "sorned": null}, | ||
{"period": "2011 W09", "licensed": 3079, "sorned": null}, | ||
{"period": "2011 W08", "licensed": 3085, "sorned": null}, | ||
{"period": "2011 W07", "licensed": 3055, "sorned": null}, | ||
{"period": "2011 W06", "licensed": 3063, "sorned": null}, | ||
{"period": "2011 W05", "licensed": 2943, "sorned": null}, | ||
{"period": "2011 W04", "licensed": 2806, "sorned": null}, | ||
{"period": "2011 W03", "licensed": 2674, "sorned": null}, | ||
{"period": "2011 W02", "licensed": 1702, "sorned": null}, | ||
{"period": "2011 W01", "licensed": 1732, "sorned": null} | ||
]; | ||
Morris.Line({ | ||
element: 'graph', | ||
data: week_data, | ||
xkey: 'period', | ||
ykeys: ['licensed', 'sorned'], | ||
labels: ['Licensed', 'SORN'], | ||
events: [ | ||
'2011-04', | ||
'2011-08' | ||
] | ||
}); | ||
</pre> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<!doctype html> | ||
<head> | ||
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> | ||
<script src="https://raw.github.com/DmitryBaranovskiy/raphael/300aa589f5a0ba7fce667cd62c7cdda0bd5ad904/raphael-min.js"></script> | ||
<script src="../morris.js"></script> | ||
<script src="lib/prettify.js"></script> | ||
<script src="lib/example.js"></script> | ||
<link rel="stylesheet" href="lib/example.css"> | ||
<link rel="stylesheet" href="lib/prettify.css"> | ||
</head> | ||
<body> | ||
<h1>Value Goals</h1> | ||
<div id="graph"></div> | ||
<pre id="code" class="prettyprint linenums"> | ||
var decimal_data = []; | ||
for (var x = 0; x <= 360; x += 10) { | ||
decimal_data.push({ | ||
x: x, | ||
y: Math.sin(Math.PI * x / 180).toFixed(4) | ||
}); | ||
} | ||
window.m = Morris.Line({ | ||
element: 'graph', | ||
data: decimal_data, | ||
xkey: 'x', | ||
ykeys: ['y'], | ||
labels: ['sin(x)'], | ||
parseTime: false, | ||
goals: [-1, 0, 1] | ||
}); | ||
</pre> | ||
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.