抱歉这个基于问题的问题。我对 jqplot 很陌生,想用它来根据从函数计算的数据生成条形图。
现在,我有一个保存数据的参数。另外,我有简单的代码来生成条形图。那么,谁能给我一个关于如何将这两个部分联系在一起的提示?
谢谢!
这是代码:
x_data=function(a,b,c,d)
#this is the data generated from a function and it needs to be
#sent to jqplot function, i.e., x_data=[165.33, 102.9, 89.04, 181.54, 114.92].
#In order to pass the parameter to jqplot, do I need to print it out in the HTML?
<script type='text/javascript'>
$(document).ready(function(x_data){
$.jqplot.config.enablePlugins = true;
var s1=x_data; //I need to find a way to link s1 to x_data
$.jqplot('chart1', [s1], {
seriesDefaults:{
renderer:$.jqplot.BarRenderer,
pointLabels: { show: true },
rendererOptions: {
barWidth: 3
}
}
})
})
</script>