I need to get numerical data to display as a chart on a webpage, and I've found that JQPlot looks to be one of the easiest JQuery libraries to do this as well as being free. However, despite all my efforts to look at the examples and tutorials on their webpage, I simply cannot get any kind of chart to display on the page. Here is my code for just the basic chart to get started:
<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>
Most of this code is taken directly from their examples webpage (http://www.jqplot.com/tests/line-charts.php), so I don't know why nothing is happening on the page.
Do these files exist on your computer and in this folder structure?
Edit:
Ensure that you have the base file (jquery.jqplot.min.js) also included too (it can be easy to miss on those pages)
http://www.jqplot.com/src/jquery.jqplot.min.js
Try placing the 'div' component before the Javascript/Jquery code.
There maybe chances that the Jquery is not able to locate the 'div'.
Define the div first and then write the code for the displaying the chart.
You need to include the main jqPlot JS before the renderer JS but after the jQuery include, and position the div on the page before you place the script to render the chart.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With