jQueryのjqPlotプラグインのtitleオプションには、フォントの種類、サイズ、色、配置を指定するプロパティが存在する。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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, 91 ], [ 6, 83 ] ]
],
{
title: {
text: 'タイトル付き折れ線グラフ',
show: true,
fontFamily: 'HGP行書体, Serif',
fontSize: '20px',
textAlign: 'left',
textColor: '#ff0000',
},
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 91 ], [ 6, 83 ] ]
],
{
title: {
text: 'タイトル付き折れ線グラフ',
show: true,
fontFamily: 'HGP行書体, Serif',
fontSize: '20px',
textAlign: 'left',
textColor: '#ff0000',
},
}
);
} );
</script>
- title
下記のタイトル用プロパティでカスタマイズすることもできる。
- text
タイトルのテキスト。
- show
タイトルを表示するか。
- fontFamily
タイトルのフォントの種類。
- fontSize
タイトルのフォントサイズ。
- textAlign
タイトルのテキストの水平方向の配置位置。
left
: 左寄せcenter
: 中央left
: 右寄せ
- textColor
タイトルのフォントの色。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>