jQuery の jqPlot で作る色指定トレンドライン付きの複数系列折れ線グラフ

jQueryのjqPlotプラグインで作る複数系列の折れ線グラフに、色を指定したトレンドラインを描き加える方法。

実装例(サンプル)

実装例(サンプル)のソースコード

読み込み

パスは、それぞれ、アップロードした場所を指定する。

<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.trendline.min.js"></script>
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" />

読み込むファイル。

JavaScript

<script>
jQuery( function() {
    jQuery . jqplot . config . enablePlugins = true;
    jQuery . jqplot(
        'jqPlot-sample',
        [
            [ [ 1, 65 ], [ 2, 72 ], [ 3, 74 ], [ 4, 63 ], [ 5, 85 ], [ 6, 70 ] ],
            [ [ 1, 93 ], [ 2, 81 ], [ 3, 79 ], [ 4, 88 ], [ 5, 78 ], [ 6, 96 ] ],
            [ [ 1, 81 ], [ 2, 86 ], [ 3, 71 ], [ 4, 69 ], [ 5, 58 ], [ 6, 82 ] ]
        ],
        {
            series: [
                {
                    color: '#bfff80',
                    trendline: {
                        color: '#80ff00'
                    }
                },
                {
                    color: '#80ffbf',
                    trendline: {
                        color: '#00ff80'
                    }
                },
                {
                    color: '#80bfff',
                    trendline: {
                        color: '#0080ff'
                    }
                }
            ]
        }
    );
} );
</script>
series

各系列ごとに指定する系列に関するオプション。1つ目の系列から順に、配列で指定する。

color

系列の色。

trendline

トレンドラインに関するオプション。

color

トレンドラインの色。

HTML

<div id="jqPlot-sample" style="height: 300px; width: 300px;"></div>

スポンサード リンク

カテゴリー: JavaScript, jqPlot, jQuery, trendline, グラフ、チャート, トレンドライン, プラグイン, 線グラフ パーマリンク