jQueryのjqPlotプラグインで、滑らかな面グラフを作る方法。
- seriesDefaultsオプションのshowMarkerプロパティに「false」を指定し、マーカーを非表示にする。
- seriesDefaultsオプションのfillプロパティに「true」を指定し、線グラフの系列の線の下を塗りつぶす。
- seriesDefaultsオプションのfillAndStrokeプロパティに「true」を指定し、系列の線を表示する。
- seriesDefaultsオプションのfillAlphaプロパティに「0.7」を指定し、折れ線グラフの系列の線の下の色を半透明にする。
- seriesDefaultsオプション内のrendererOptionsのsmoothプロパティに「true」を指定。線グラフの系列の線が、滑らかになる。
- axesオプションのxaxisのpadプロパティに「0」を指定し、x軸の余白をなくす。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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, 83 ], [ 2, 81 ], [ 3, 79 ], [ 4, 88 ], [ 5, 78 ], [ 6, 96 ] ],
[ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ],
[ [ 1, 81 ], [ 2, 86 ], [ 3, 71 ], [ 4, 69 ], [ 5, 58 ], [ 6, 82 ] ]
],
{
axes: {
xaxis: {
pad: 0
}
},
seriesDefaults: {
showMarker: false,
fill: true,
fillAndStroke: true,
fillAlpha: 0.7,
rendererOptions: {
smooth: true
}
}
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 1, 83 ], [ 2, 81 ], [ 3, 79 ], [ 4, 88 ], [ 5, 78 ], [ 6, 96 ] ],
[ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ],
[ [ 1, 81 ], [ 2, 86 ], [ 3, 71 ], [ 4, 69 ], [ 5, 58 ], [ 6, 82 ] ]
],
{
axes: {
xaxis: {
pad: 0
}
},
seriesDefaults: {
showMarker: false,
fill: true,
fillAndStroke: true,
fillAlpha: 0.7,
rendererOptions: {
smooth: true
}
}
}
);
} );
</script>
- axes
軸に関するオプション。
- xaxis
X軸に関するオプション。
- pad
X軸上の余白を調整。
面グラフ作成時には、「0」を指定し、余白をなくすことが多い。
- seriesDefaults
グラフの種類や、系列の色、太さなど、系列に関する初期設定オプション。
- showMarker
系列のマーカーを表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- fill
系列の線の下を塗りつぶすか。「true」は塗りつぶ。「false」は塗らない。初期設定値は、「false」。
- fillAndStroke
系列の線を表示するか。「true」は表示。「false」は非表示。初期設定値は、「false」。
- fillAlpha
- rendererOptions
系列の生成編集オプション。
- smooth
系列の線を滑らかにするか。「true」を指定すると滑らかにする。初期設定値は、「false」。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 400px;"></div>