jQueryのjqPlotプラグインで、ツールチップ風ハイライト表示付き散布図(分布図・点グラフ)を作る方法。
実装例(サンプル)
実装例(サンプル)の動作について
データポイントにマウスカーソル(マウスポインタ)を合わせると、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>
<script language="javascript" type="text/javascript" src="plugins/jqplot.highlighter.min.js"></script>
<script language="javascript" type="text/javascript" src="plugins/jqplot.pointLabels.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.highlighter.min.js"></script>
<script language="javascript" type="text/javascript" src="plugins/jqplot.pointLabels.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.highlighter.min.js
- jqplot.pointLabels.min.js
- jquery.jqplot.min.css
JavaScript
<script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 88, 65, 'A' ], [ 36, 22, 'B' ], [ 33, 54, 'C' ], [ 51, 63, 'D' ], [ 21, 91, 'E' ], [ 45, 79, 'F' ] ]
],
{
seriesDefaults: {
color: '#7dffc7',
showLine: false,
markerOptions: {
size: 30
},
pointLabels: {
show: true,
location: 'n',
ypadding: -12,
}
},
highlighter: {
show: true,
showMarker: false,
tooltipLocation: 'e',
tooltipAxes: 'xy',
formatString: 'x:%s, y:%s'
}
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 88, 65, 'A' ], [ 36, 22, 'B' ], [ 33, 54, 'C' ], [ 51, 63, 'D' ], [ 21, 91, 'E' ], [ 45, 79, 'F' ] ]
],
{
seriesDefaults: {
color: '#7dffc7',
showLine: false,
markerOptions: {
size: 30
},
pointLabels: {
show: true,
location: 'n',
ypadding: -12,
}
},
highlighter: {
show: true,
showMarker: false,
tooltipLocation: 'e',
tooltipAxes: 'xy',
formatString: 'x:%s, y:%s'
}
}
);
} );
</script>
- seriesDefaults
グラフの種類や、系列の色、太さなど、系列に関する初期設定オプション。
- color
- showLine
系列の線を表示するか。「true」は表示。「false」は非表示。初期設定値は、「true」。
- markerOptions
系列のマーカーに関するオプション。
- size
系列のマーカーの大きさ。初期設定値は、「9」。
- pointLabels
データポイントに関するオプション。
- show
データポイントを表示するかどうか。「true」は表示。「false」は非表示。初期設定値は、「false」。
- location
データポイントを配置する位置(方角)。
- nw: 左上
- n: 上
- ne: 右上
- e: 右
- se: 右下
- s: 下
- sw: 左下
- w: 左
- ypadding
データポイントとラベルの間の垂直方向のパディング。
- highlighter
ハイライトに関するオプション。
- show
ハイライトを表示するか。「true」を指定すると表示。「false」を指定すると非表示。初期設定値は「false」。
- showMarker
マーカーを表示するか。「true」を指定すると表示。「false」を指定すると非表示。初期設定値は「true」。
- tooltipLocation
ツールチップを表示する位置。
- nw: 左上
- n: 上
- ne: 右上
- e: 右
- se: 右下
- s: 下
- sw: 左下
- w: 左
- tooltipAxes
ツールチップに表示する値。
x
: Xの値を表示。y
: Yの値を表示。both
: XとYの値を表示。xy
: XとYの値を表示。yx
: YとXの値を表示。
- formatString
ツールチップの形式を指定。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>