jQueryのjqPlotプラグインのlabelOptions内のfontFamilyオプションやfontSizeオプションは、軸ラベルのフォントの種類やサイズを指定することができる。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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',
[
[ [ 4, 65 ], [ 5, 72 ], [ 6, 74 ], [ 7, 63 ], [ 8, 85 ], [ 9, 90 ] ]
],
{
axes:{
xaxis:{
label: '月',
labelOptions: {
fontFamily: 'HGP行書体, Serif',
fontSize: '20pt',
}
},
yaxis:{
label: '点数',
labelOptions: {
fontFamily: 'HGP行書体, Serif',
fontSize: '20pt',
}
}
}
}
);
} );
</script>
jQuery( function() {
jQuery . jqplot(
'jqPlot-sample',
[
[ [ 4, 65 ], [ 5, 72 ], [ 6, 74 ], [ 7, 63 ], [ 8, 85 ], [ 9, 90 ] ]
],
{
axes:{
xaxis:{
label: '月',
labelOptions: {
fontFamily: 'HGP行書体, Serif',
fontSize: '20pt',
}
},
yaxis:{
label: '点数',
labelOptions: {
fontFamily: 'HGP行書体, Serif',
fontSize: '20pt',
}
}
}
}
);
} );
</script>
- axes
軸に関するオプション。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>