jQueryのjqPlotプラグインで作る折れ線グラフにおいて、Y軸上の目盛りや、グリッド線、目盛りラベルを、カスタマイズする方法。
axesオプション内のyaxisのtickOptionsプロパティで、位置、サイズ、表示/非表示、テキスト形式などを、指定することができる。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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" />
<!--[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',
[
[ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ]
],
{
axes: {
yaxis: {
ticks: [ 0, 25, 50, 75, 100 ],
tickOptions: {
mark: 'outside',
showMark: true,
showGridline: true,
markSize: 4,
show: true,
showLabel: true,
formatString: '%d点',
}
}
},
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ]
],
{
axes: {
yaxis: {
ticks: [ 0, 25, 50, 75, 100 ],
tickOptions: {
mark: 'outside',
showMark: true,
showGridline: true,
markSize: 4,
show: true,
showLabel: true,
formatString: '%d点',
}
}
},
}
);
} );
</script>
- axes
軸に関するオプション。
- yaxis
Y軸に関するオプション。
- ticks
Y軸上の目盛りを指定。
指定しない場合は、自動的に計算する。
- tickOptions
目盛りに関するオプション。
- mark
目盛りの位置。初期設定値は、「outside」。
- outside:外側
- inside:内側
- showMark
目盛りを表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- showGridline
グリッド線を表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- markSize
目盛りのサイズ。初期設定値は、「4」。
- show
目盛りと目盛りのラベルを表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- showLabel
目盛りのラベルを表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- formatString
目盛りのラベルの形式を指定。
%d
: 整数%f
: 小数%g
: データ値%s
:文字列
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>