Webページにグラフとして表示する数値データを取得する必要があります。JQPlotは、これを実行するのに最も簡単なJQueryライブラリの1つであり、無料であることがわかりました。しかし、彼らのWebページの例とチュートリアルを見るように努力したにもかかわらず、ページに表示するチャートを取得することはできません。開始するための基本的なチャートのコードは次のとおりです。
<html>
<head>
<title>Testing plots functions</title>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script type="text/javascript" src="JQPlot/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="JQPlot/plugins/jqplot.canvasAxisLabelRenderer.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var plot1 = $.jqplot ('chart1', [[3,7,9,1,4,6,8,2,5]]);
});
</script>
</head>
<body>
Here is the start of the page...<br>
<div id="chart1"></div>
</body>
</html>
このコードのほとんどは、サンプルWebページ(http://www.jqplot.com/tests/line-charts.php)から直接取得されているため、ページで何も起こらない理由がわかりません。