2012-08-27 23:39:16 +02:00
|
|
|
<!doctype html>
|
|
|
|
<head>
|
2013-11-09 17:50:32 +01:00
|
|
|
<script src="../third_party/jquery-1.8.2.min.js"></script>
|
|
|
|
<script src="../third_party/raphael-2.1.0.min.js"></script>
|
2012-08-27 23:39:16 +02:00
|
|
|
<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">
|
2012-11-18 20:02:46 +01:00
|
|
|
<link rel="stylesheet" href="../morris.css">
|
2012-08-27 23:39:16 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2012-09-01 12:04:06 +02:00
|
|
|
<h1>Donut Chart</h1>
|
2012-08-27 23:39:16 +02:00
|
|
|
<div id="graph"></div>
|
|
|
|
<pre id="code" class="prettyprint linenums">
|
|
|
|
Morris.Donut({
|
|
|
|
element: 'graph',
|
|
|
|
data: [
|
|
|
|
{value: 70, label: 'foo'},
|
|
|
|
{value: 15, label: 'bar'},
|
|
|
|
{value: 10, label: 'baz'},
|
|
|
|
{value: 5, label: 'A really really long label'}
|
2012-09-20 08:31:31 +02:00
|
|
|
],
|
|
|
|
formatter: function (x) { return x + "%"}
|
2012-12-31 12:02:14 +01:00
|
|
|
}).on('click', function(i, row){
|
|
|
|
console.log(i, row);
|
2012-08-27 23:39:16 +02:00
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
</body>
|