[flotrライブラリ] 棒グラフを表示する

説明

flotrライブラリで棒グラフを表示するには、draw()メソッドの3番目のbarsオプションパラメータに{ show : true, barWidth : 棒グラフの太さ }を指定します。

サンプルプログラム

【HTML】
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<link rel="stylesheet" href="css/main.css" type="text/css" media="all">
<script type="text/javascript" src="js/prototype-1.6.0.2.js"></script>
<!--[if IE]>
<script type="text/javascript" src="js/excanvas.js"></script>
<script type="text/javascript" src="js/base64.js"></script>
<![endif]-->
<script type="text/javascript" src="js/canvas2image.js"></script>
<script type="text/javascript" src="js/canvastext.js"></script>
<script type="text/javascript" src="js/flotr-0.2.0-alpha.js"></script>
<script type="text/javascript" src="js/sample.js"></script>
</head>
<body>
<h1>棒グラフ表示</h1>
<div id="graph" style="width:600px;height:300px;"></div>
</body>
</html>


【sample.js】
document.observe("dom:loaded", function(){
var data = [[0,0], [3,2], [5,6], [8,3]];
Flotr.draw($("graph"), [ data ], {
bars: { show : true, barWidth : 1 },
xaxis : { max : 10 }
});
});
サンプルを実行
[戻る]