-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from palantir/dev
Merge version 0.1.0 into master - the demo day release
- Loading branch information
Showing
30 changed files
with
1,233 additions
and
105 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 |
---|---|---|
|
@@ -3,3 +3,5 @@ plottable.js | |
plottable.js.map | ||
tests.js | ||
tests.js.map | ||
examples/*.js | ||
examples/*.js.map |
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
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,34 @@ | ||
.demo-table-title text { | ||
text-decoration: line-through; | ||
fill: yellow; | ||
font-family: Times; | ||
} | ||
|
||
.scatterplot-title text { | ||
font-size: 24pt; | ||
fill: magenta; | ||
font-family: monospace; | ||
} | ||
|
||
.histogram-title text { | ||
font-size: 24pt; | ||
fill: cyan; | ||
font-family: cursive; | ||
} | ||
|
||
rect { | ||
fill: green; | ||
} | ||
|
||
circle { | ||
fill: orange; | ||
} | ||
|
||
.selected-point { | ||
fill: black; | ||
} | ||
|
||
.drag-box { | ||
fill: red; | ||
opacity: 0.5; | ||
} |
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,20 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<head> | ||
<link href="../style.css" type="text/css" rel="stylesheet" /> | ||
<link href="demo-day-crazy.css" type="text/css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<br><hr><br> | ||
<svg id="table" width="800px" height="600px"></svg> | ||
<br><hr><br> | ||
|
||
|
||
<script type="text/javascript"> window.demoName = "demo-day"; //HACK HACK </script> | ||
<script src="../Lib/chai/chai.js"></script> | ||
<script src="../Lib/lodash.js"></script> | ||
<script src="../Lib/d3.ascii.js"></script> | ||
<script src="../plottable.js"></script> | ||
<script src="examples.js"></script> | ||
|
||
</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,14 @@ | ||
.demo-table-title text { | ||
text-decoration: underline; | ||
} | ||
|
||
.scatterplot-title text { | ||
font-size: 24pt; | ||
} | ||
|
||
.histogram-title text { | ||
font-size: 24pt; | ||
|
||
.axis-label text { | ||
font-size: 12pt; | ||
} |
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,20 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<head> | ||
<link href="../style.css" type="text/css" rel="stylesheet" /> | ||
<link href="demo-day.css" type="text/css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
<br><hr><br> | ||
<svg id="table" width="800px" height="600px"></svg> | ||
<br><hr><br> | ||
|
||
|
||
<script type="text/javascript"> window.demoName = "demo-day"; //HACK HACK </script> | ||
<script src="../Lib/chai/chai.js"></script> | ||
<script src="../Lib/lodash.js"></script> | ||
<script src="../Lib/d3.ascii.js"></script> | ||
<script src="../plottable.js"></script> | ||
<script src="examples.js"></script> | ||
|
||
</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
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,30 @@ | ||
<!DOCTYPE html> | ||
<meta charset="utf-8"> | ||
<head> | ||
<link href="../style.css" type="text/css" rel="stylesheet" /> | ||
</head> | ||
<body> | ||
|
||
<h1> Bar Renderer </h1> | ||
<svg id="svg6"></svg><br><hr><br> | ||
|
||
|
||
<h1> Basic TSC </h1> | ||
<svg id="svg1"></svg><br><hr><br> | ||
<h1> Chartbag of timeseriescharts </h1> | ||
<svg id="svg2"></svg><br><hr><br> | ||
<h1> TSC with 2 axes </h1> | ||
<svg id="svg3"></svg><br><hr><br> | ||
<h1> TSC with subplots, varying # of axes, and sparkline </h1> | ||
<svg id="svg4"></svg><br><hr><br> | ||
<svg id="svg5"></svg><br><hr><br> | ||
|
||
|
||
<script src="../Lib/d3.ascii.js"></script> | ||
<script src="../Lib/lodash.js"></script> | ||
<script src="../Lib/chai/chai.js"></script> | ||
<script type="text/javascript"> window.demoName = "demo1"; //HACK HACK </script> | ||
<script src="../plottable.js"></script> | ||
<script src="examples.js"></script> | ||
|
||
</body> |
Oops, something went wrong.