jQueryのjqPlotプラグインで作る折れ線グラフの、系列のマーカーの色を、系列ごとに変更する方法。
seriesDefaultsオプション、もしくは、seriesオプション内の、markerOptionsのcolorプロパティで、マーカーの色を指定することができる。系列ごとに指定する場合は、seriesオプション内で指定する。
実装例(サンプル)
実装例(サンプル)のソースコード
読み込み
パスは、それぞれ、アップロードした場所を指定する。
<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() {
Tarou = [ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ];
Hanako = [ [ 1, 83 ], [ 2, 81 ], [ 3, 79 ], [ 4, 88 ], [ 5, 78 ], [ 6, 96 ] ];
Ichirou = [ [ 1, 81 ], [ 2, 86 ], [ 3, 71 ], [ 4, 69 ], [ 5, 58 ], [ 6, 82 ] ];
jQuery . jqplot(
'jqPlot-sample',
[
Tarou, Hanako, Ichirou
],
{
series: [
{
markerOptions: {
color: 'red'
}
},
{
markerOptions: {
color: 'blue'
}
},
{
markerOptions: {
color: 'green'
}
}
]
}
);
} );
</script>
jQuery( function() {
Tarou = [ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 90 ] ];
Hanako = [ [ 1, 83 ], [ 2, 81 ], [ 3, 79 ], [ 4, 88 ], [ 5, 78 ], [ 6, 96 ] ];
Ichirou = [ [ 1, 81 ], [ 2, 86 ], [ 3, 71 ], [ 4, 69 ], [ 5, 58 ], [ 6, 82 ] ];
jQuery . jqplot(
'jqPlot-sample',
[
Tarou, Hanako, Ichirou
],
{
series: [
{
markerOptions: {
color: 'red'
}
},
{
markerOptions: {
color: 'blue'
}
},
{
markerOptions: {
color: 'green'
}
}
]
}
);
} );
</script>
- series
各系列ごとに指定する系列に関するオプション。1つ目の系列から順に、配列で指定する。
- markerOptions
系列のマーカーに関するオプション。
- color
系列のマーカーの色。初期設定値は、系列の線の色と同じ。
HTML
<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>