信息未在jqplot中显示

时间:2013-08-29 13:28:13

标签: jqplot

您好使用下面的代码我无法显示任何条形图。我试过直接复制一个例子并且工作正常,所以我确信加载了正确的源代码。我得到的是带有xaxis的框,标记为月份(正确),但不是很多。

var plot1 = $.jqplot('plan_chart',[capital], {
    title:"Planner",
    seriesDefaults:{
        renderer:$.jqplot.BarRenderer,
        //rendererOptions: {fillToZero: true}
    },
    series:[
        {label:'Total Monthly Capital'},
    ],

    axes: {
        // Use a category axis on the x axis and use our custom ticks.
        xaxis: {
            renderer: $.jqplot.CategoryAxisRenderer,
            ticks: months
        },
        yaxis: {
            //pad: 1.05,
            tickOptions: {formatString: '£%d'}
        }
    }
});

我知道大写数组中有正确的数字,因为我在调试器中检查了它。

任何帮助都将不胜感激。

0 个答案:

没有答案