flot sample stack

by Yoshiharu Kamata

HTML

<script src="http://people.iola.dk/olau/flot/jquery.flot.js"></script>
<script src="http://jquery-json.googlecode.com/svn/trunk/src/jquery.json.min.js"></script>
  <!--[if lte IE 8]><script language="javascript" type="text/javascript" src="http://people.iola.dk/olau/flot/excanvas.min.js"></script><![endif]-->
<h1>Flot Examples</h1>
<div id="placeholder" style="width:600px;height:300px;"></div>

JavaScript

$(function () {
var data =[ 
  { label: "Foo", data: [ [0, 10], [30, 10] ] },
  { label: "Bar", data: [ [0, 20], [30, 20] ] },
  { label: "Baz", data: [ [0, 30], [50, 30] ] }
];
    $.plot($("#placeholder"), data,{
        lines: {lineWidth: 20},
        legend: false
    });

});