jQueryのjqPlotプラグインで作るバブルチャートにおいて、jQuery UIのResizableを併用し、ドラッグ&ドロップで、サイズを変更できるようにする方法。
実装例(サンプル)
実装例(サンプル)の動作について
グラフを囲む実線の四角の右下をドラッグ&ドロップすることで、バブルチャート全体のサイズを変更することができる。
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<script language="javascript" type="text/javascript" src="jquery-1.7.1.min.js"></script>
<script language="javascript" type="text/javascript" src="ui/jquery-ui-1.8.12.custom.min.js"></script>
<link rel="stylesheet" href="ui/themes/base/jquery.ui.all.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.bubbleRenderer.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />
<script language="javascript" type="text/javascript" src="ui/jquery-ui-1.8.12.custom.min.js"></script>
<link rel="stylesheet" href="ui/themes/base/jquery.ui.all.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.bubbleRenderer.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />
読み込むファイル。
- jquery-1.7.1.min.js
- jquery-ui-1.8.12.custom.min.js
- jquery.ui.all.css
- jquery.jqplot.min.js
- jqplot.bubbleRenderer.min.js
- jquery.jqplot.min.css
JavaScript
<script>
jQuery( function() {
var samplePlot = jQuery . jqplot(
'jqPlot-sample',
[
[ [ 88, 65, 52, 'A' ], [ 36, 22, 62, 'B' ], [ 33, 54, 35, 'C' ], [ 51, 63, 33, 'D' ], [ 21, 91, 51, 'E' ], [ 45, 79, 68, 'F' ] ]
],
{
seriesDefaults: {
renderer: jQuery . jqplot . BubbleRenderer
},
axes: {
xaxis: {
ticks: [ '0', '25', '50', '75', '100' ],
},
yaxis: {
ticks: [ '0', '25', '50', '75', '100' ],
},
}
}
);
jQuery( "#resizable" ) . resizable( {
minHeight: 150,
minWidth: 150,
maxHeight: 500,
maxWidth: 500,
} );
jQuery( '#resizable' ) . bind( 'resize', function( event, ui ) {
jQuery( '#jqPlot-sample' ) . height(
jQuery( '#resizable' ) . height() * 1
);
jQuery( '#jqPlot-sample' ) . width(
jQuery( '#resizable' ) . width() * 1
);
samplePlot . replot( { resetAxes: true } );
} );
} );
</script>
jQuery( function() {
var samplePlot = jQuery . jqplot(
'jqPlot-sample',
[
[ [ 88, 65, 52, 'A' ], [ 36, 22, 62, 'B' ], [ 33, 54, 35, 'C' ], [ 51, 63, 33, 'D' ], [ 21, 91, 51, 'E' ], [ 45, 79, 68, 'F' ] ]
],
{
seriesDefaults: {
renderer: jQuery . jqplot . BubbleRenderer
},
axes: {
xaxis: {
ticks: [ '0', '25', '50', '75', '100' ],
},
yaxis: {
ticks: [ '0', '25', '50', '75', '100' ],
},
}
}
);
jQuery( "#resizable" ) . resizable( {
minHeight: 150,
minWidth: 150,
maxHeight: 500,
maxWidth: 500,
} );
jQuery( '#resizable' ) . bind( 'resize', function( event, ui ) {
jQuery( '#jqPlot-sample' ) . height(
jQuery( '#resizable' ) . height() * 1
);
jQuery( '#jqPlot-sample' ) . width(
jQuery( '#resizable' ) . width() * 1
);
samplePlot . replot( { resetAxes: true } );
} );
} );
</script>
jqPlotに関するオプション
- 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
: ピラミッドグラフ
- axes
軸に関するオプション。
- xaxis
X軸に関するオプション。
- ticks
X軸上の目盛りを指定。
指定しない場合は、自動的に計算する。
- yaxis
Y軸に関するオプション。
- ticks
Y軸上の目盛りを指定。
指定しない場合は、自動的に計算する。
resizableに関するオプション
- minHeight
最小の高さを指定するオプション。初期設定値は「10」。
- minWidth
最小の幅を指定するオプション。初期設定値は「10」。
- maxHeight
最大の高さを指定するオプション。初期設定値はない。
- maxWidth
最大の幅を指定するオプション。初期設定値はない。
HTML
<div id="resizable" class="ui-widget-content" style="padding: 20px; width: 300px;">
<div id="jqPlot-sample" style="height: 300px;"></div>
</div>
<div id="jqPlot-sample" style="height: 300px;"></div>
</div>