dimple/advanced_examples_index.html

80 lines
3.2 KiB
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>dimple - A simple charting API for d3 data visualisations</title>
<link rel="stylesheet" href="/stylesheets/styles.css">
<link rel="stylesheet" href="/stylesheets/pygment_trac.css">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="application/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<div class="wrapper">
<header>
<h2>Advanced Examples</h2>
<p>
Going beyond standard functionality in dimple.
</p>
<table style="width:100%">
<tr>
<td style="width:50%" align="left"><a style="text-align:left" id="prev" href="/index.html">&lt; Home</a></td>
<td style="width:50%" align="right"><a style="text-align:right" id="next"></a></td>
</tr>
</table>
<h3>Libraries</h3>
<p>
<a href="/dist/dimple.v1.js">Full Javascript Library With Comments</a><br/>
<a href="/dist/dimple.v1.min.js">Minified Javascript Library</a><br/>
<a href="https://github.com/PMSI-AlignAlytics/dimple/zipball/master">Zip File</a><br/>
<a href="https://github.com/PMSI-AlignAlytics/dimple/tarball/master">Tar Ball</a><br/>
</p>
<h3>Resources</h3>
<p>
<a href="/examples_index.html">Examples</a><br/>
<a href="/advanced_examples_index.html">Advanced Examples</a><br/>
<a href="https://github.com/PMSI-AlignAlytics/dimple">View On GitHub</a><br/>
<a href="https://github.com/PMSI-AlignAlytics/dimple/wiki">Full API Documentation</a><br/>
</p>
</header>
<section>
<div id="examples">
</div>
</section>
<footer>
<p>
This is an open-source project by <br/>
<a href="http://www.pmsi-consulting.com">PMSI-AlignAlytics</a>
</p>
</footer>
<script type="text/javascript">
// Show all the examples
$.getJSON("/advanced_examples_meta.json", function(data) {
// Set the next links
if (data.length > 0) {
$("#next").attr("href","/advanced_examples_viewer.html?id=" + data[0].id);
$("#next").text(data[0].shortTitle + " >");
}
data.forEach(function (spec, i) {
$("#examples").append("<a class=\"example\" href=\"/advanced_examples_viewer.html?id=" + spec.id + "\"><img src=\"/images/" + spec.id + ".png\"></a>");
});
});
</script>
<script src="javascripts/scale.fix.js"></script>
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-41100937-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>