jQueryのjqPlotプラグインで作る横棒グラフにおいて、棒の幅や影などをカスタマイズする方法。
seriesDefaultsもしくはseriesオプション内のrendererOptions内のプロパティにおいて、棒の幅や影などを指定できる。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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>
<script language="javascript" type="text/javascript" src="plugins/jqplot.barRenderer.min.js"></script>
<script language="javascript" type="text/javascript" src="plugins/jqplot.categoryAxisRenderer.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>
<script language="javascript" type="text/javascript" src="plugins/jqplot.barRenderer.min.js"></script>
<script language="javascript" type="text/javascript" src="plugins/jqplot.categoryAxisRenderer.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />
読み込むファイル。
- jquery-1.7.1.min.js
- jquery.jqplot.min.js
- jqplot.barRenderer.min.js
- jqplot.categoryAxisRenderer.min.js
- jquery.jqplot.min.css
JavaScript
<script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 65, '4月' ], [ 72, '5月' ], [ 74, '6月' ], [ 63, '7月' ], [ 85, '8月' ], [ 90, '9月' ] ],
[ [ 38, '4月' ], [ 54, '5月' ], [ 65, '6月' ], [ 89, '7月' ], [ 91, '8月' ], [ 75, '9月' ] ]
],
{
axes: {
yaxis: {
renderer: jQuery . jqplot . CategoryAxisRenderer,
}
},
seriesDefaults: {
renderer: jQuery . jqplot . BarRenderer,
rendererOptions: {
barPadding: 8,
barMargin: 10,
barDirection: 'horizontal',
barWidth: null,
shadowOffset: 2,
shadowDepth: 5,
shadowAlpha: 0.08,
}
}
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 65, '4月' ], [ 72, '5月' ], [ 74, '6月' ], [ 63, '7月' ], [ 85, '8月' ], [ 90, '9月' ] ],
[ [ 38, '4月' ], [ 54, '5月' ], [ 65, '6月' ], [ 89, '7月' ], [ 91, '8月' ], [ 75, '9月' ] ]
],
{
axes: {
yaxis: {
renderer: jQuery . jqplot . CategoryAxisRenderer,
}
},
seriesDefaults: {
renderer: jQuery . jqplot . BarRenderer,
rendererOptions: {
barPadding: 8,
barMargin: 10,
barDirection: 'horizontal',
barWidth: null,
shadowOffset: 2,
shadowDepth: 5,
shadowAlpha: 0.08,
}
}
}
);
} );
</script>
- axes
軸に関するオプション。
- yaxis
Y軸に関するオプション。
- renderer
jQuery . jqplot . CategoryAxisRenderer
: Y軸をカテゴリとして扱う。
- seriesDefaults
グラフの種類や、系列の色、太さなど、グラフ、系列の初期設定。
- renderer
系列の生成編集に使うプラグインを指定。
jQuery . jqplot . BarRenderer
: 棒グラフjQuery . jqplot . BezierCurveRenderer
: ベジェ曲線グラフjQuery . jqplot . BlockRenderer
: ブロックチャートjQuery . jqplot . BubbleRenderer
: バブルチャートjQuery . jqplot . DonutRenderer
: ドーナツグラフjQuery . jqplot . MeterGaugeRenderer
: メーターゲージjQuery . jqplot . MekkoRenderer
: マリメッコ・チャートjQuery . jqplot . OHLCRenderer
: いかり足、ローソク足jQuery . jqplot . PieRenderer
: 円グラフjQuery . jqplot . PyramidRenderer
: ピラミッドグラフ
- rendererOptions
画像生成編集オプション。
- barPadding
同カテゴリ異系列の、隣接する棒と棒の間の距離。初期設定値は「8」。
- barMargin
隣接するカテゴリとの距離。初期設定値は「10」。
- barDirection
棒グラフの種類。「vertical」か「horizontal」。初期設定値は「vertical 」。
- barWidth
棒の幅。「null」を指定すると、自動的に算出する。初期設定値は「null」。
- shadowOffset
棒の端から影へのオフセット。初期設定値は「2」。
- shadowDepth
影の太さ。初期設定値は「5」。
- shadowAlpha
影の不透明度。初期設定値は「0.08」。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>