必要なscript
<link rel="stylesheet" type="text/css" href="jquery.jqplot.min.css" /> <script src="jquery-1.11.1.min.js"></script> <script src="jquery.jqplot.min.js"></script> <script src="jqplot.dateAxisRenderer.min.js"></script>
※null値バグについて。
以下のようにnull値が入っているとグラフが崩れるバグを引き起こす。
[['2012/12/12',22],['2012/12/13',null],['2012/12/14',29]
以下のようにnullをコンマでくくると解決するようである。
[['2012/12/12',22],['2012/12/13','null'],['2012/12/14',29]
以下のようにnull値が入っているとグラフが崩れるバグを引き起こす。
[['2012/12/12',22],['2012/12/13',null],['2012/12/14',29]
以下のようにnullをコンマでくくると解決するようである。
[['2012/12/12',22],['2012/12/13','null'],['2012/12/14',29]
公式サイトのサンプル