jQuery の jqPlot プラグインで作る軸ラベル付き折れ線グラフ

jQueryのjqPlotプラグインのlabelオプションを使えば、X軸とY軸にラベルを表示する折れ線グラフを描くことができる。

実装例(サンプル)

実装例(サンプル)のソースコード

読み込み

パスは、それぞれ、アップロードした場所を指定する。

<script language="javascript" type="text/javascript" src="jquery-1.7.1.min.js"></script>
<!--[if lt IE 9]>
    <script language="javascript" type="text/javascript" src="excanvas.min.js"></script>
<![endif]-->
<script language="javascript" type="text/javascript" src="jquery.jqplot.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />

読み込むファイル。

JavaScript

<script>
jQuery( function() {
    jQuery . jqplot(
        'jqPlot-sample',
        [
            [ [ 4, 65 ], [ 5, 72 ], [ 6, 74 ], [ 7, 63 ], [ 8, 85 ], [ 9, 90 ] ]
        ],
        {
            axes:{
                xaxis:{
                    label:'月'
                },
                yaxis:{
                    label:'点数'
                }
            }
        }
    );
} );
</script>
axes

軸に関するオプション。

xaxis

X軸に関するオプション。

label

X軸のラベル

yaxis

Y軸に関するオプション。

label

Y軸のラベル

HTML

<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>

スポンサード リンク

カテゴリー: JavaScript, jqPlot, jQuery, グラフ、チャート, プラグイン, 線グラフ パーマリンク