Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
<!doctype html>
2
<head>
3
  <script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
4
  <script src="http://cdnjs.cloudflare.com/ajax/libs/raphael/2.1.2/raphael-min.js"></script>
5
  <script src="../morris.js"></script>
6
  <script src="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.js"></script>
7
  <script src="lib/example.js"></script>
8
  <link rel="stylesheet" href="lib/example.css">
9
  <link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/prettify/r224/prettify.min.css">
10
  <link rel="stylesheet" href="../morris.css">
11
</head>
12
<body>
13
<h1>Area charts</h1>
14
<div id="graph"></div>
15
<pre id="code" class="prettyprint linenums">
16
// Use Morris.Area instead of Morris.Line
17
Morris.Area({
18
  element: 'graph',
19
  data: [
20
    {x: '2010 Q4', y: 3, z: 7},
21
    {x: '2011 Q1', y: 3, z: 4},
22
    {x: '2011 Q2', y: null, z: 1},
23
    {x: '2011 Q3', y: 2, z: 5},
24
    {x: '2011 Q4', y: 8, z: 2},
25
    {x: '2012 Q1', y: 4, z: 4}
26
  ],
27
  xkey: 'x',
28
  ykeys: ['y', 'z'],
29
  labels: ['Y', 'Z']
30
}).on('click', function(i, row){
31
  console.log(i, row);
32
});
33
</pre>
34
</body>