JQPlot饼图抛出“无法获取属性'0'的值:对象为空或未定义”错误

时间:2011-07-15 19:33:26

标签: javascript jquery charts jqplot

我正在使用基于JQuery的图表库jqPlot(以及它的饼图插件)来生成一个非常基本的饼图。它在FF等工作正常,但(惊喜!)不在IE中。在IE中,它实际上加载正常并且看起来很好,但是一旦我将鼠标滚到图表上,它就会抛出以下错误:

  

无法获取属性'0'的值:object为null或undefined

我设置所有内容的方式非常简单:

var optionsObj = {
               seriesColors: ['#3399cc', '#cc6666', '#7ba550', '#ffcc66', '#d17314'],
               grid: {
               },
               seriesDefaults: {
                  renderer: $.jqplot.PieRenderer,
                  rendererOptions: { lineLabels: true, lineLabelsLineColor: '#777'}
               }
               };

            line1 = [['Coffee', 9],['Beer', 4],['TV', 6],['Lost umbrellas', 2],['Bicycle rides', 10]];
            chart = $.jqplot('pieDiv', [line1], optionsObj);

我还应该提到我正在使用包含标签行的修改后的饼图插件,但即使使用常规饼图插件我也遇到了这个问题。这可以在这里找到:http://blog.statscollector.com/line-labels-for-the-pie-chart-in-jqplot/

有没有人在使用此库之前遇到过类似的内容? 任何帮助将不胜感激。 感谢。

2 个答案:

答案 0 :(得分:0)

好像你缺少系列颜色。你有3系列颜色,而第1行有5组。

答案 1 :(得分:0)

试试这个

var optionsObj = {
               seriesColors: ['#3399cc', '#cc6666', '#7ba550'],
               grid: {
               },
               seriesDefaults: {
                  renderer: $.jqplot.PieRenderer,
                  rendererOptions: { lineLabels: true, lineLabelsLineColor: '#777'}
               }
               };

            line1 = [['Coffee', 9],['Beer', 4],['TV', 6],['Lost umbrellas', 2],['Bicycle rides', 10]];
            chart = $.jqplot('pieDiv', line1, optionsObj);