ChartJS:未捕获的TypeError:无法读取未定义的属性'call'

时间:2015-07-15 15:34:57

标签: javascript csv chart.js papaparse

我正在使用ChartJS来渲染从CSV解析的一些数据。 CSV解析正常 - 我可以使用控制台日志和其他方法验证这一点。然后我生成数组以编程方式提供ChartJS。这个数组在控制台中对我来说也很好看,但显然它不起作用,因为ChartJS给了我这个错误:

Uncaught TypeError: Cannot read property 'call' of undefined

这是我的代码:

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js" type="text/javascript"></script>
<script src="https://localspace/js/papaparse.js" type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/1.0.2/Chart.js"  type="text/javascript"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/randomcolor/0.3.1/randomColor.min.js"  type="text/javascript"></script>

<script type="text/javascript">
var doughnutChartData = [];
Chart.defaults.global = {
    responsive: false
    // animation: true
}
$(document).ready(function(){
    var parseResults;
    Papa.parse("localspace/csv/06/Referring-Domains.csv", {
        download: true,
        comments: "#",
        // header: true,
        complete: function(results) {
            parseResults = results.data;
            console.log(parseResults);
            for(i=0;i<parseResults.length;i++){
                if(i!=0&&i<6){
                    $( "#referringDomainsTable tbody" ).append( "<tr><td>"+parseResults[i][1]+"</td><td>"+parseResults[i][2]+"</td><td>"+parseResults[i][3]+"</td></tr>" );
                    doughnutChartData.push({
                        value: parseResults[i][3].slice(0,-1),
                        color: randomColor(),
                        label: parseResults[i][1]
                    });
                }
            }
            console.log(doughnutChartData);
            setTimeout(function(){
                // Get context with jQuery - using jQuery's .get() method.
                var ctx = $("#referringDomainsChart").get(0).getContext("2d");
                // This will get the first returned node in the jQuery collection.
                var myNewChart = new Chart(ctx).Doughnut(doughnutChartData);
            },3000);
        }
    });  
});
</script>

<h2>Referring Domains</h2>
<canvas id="referringDomainsChart" width="400" height="400"></canvas>
<table id="referringDomainsTable">
    <thead>
        <tr>
            <th>Referring Domains</th>
            <th>Instances</th>
            <th>Percent</th>
        </tr>
    </thead>
    <tbody>
    </tbody>
</table>

添加了setTimeout函数以确保在填充数组后加载数据。它对错误没有影响,无论代码是否包含在setTimeout中,都存在错误。

注意,图表实际上显示并且颜色和值正确 - 但我仍然得到此错误和标签(或动画,当我将该行取消注释时)不起作用。希望有人有答案,谢谢你的阅读。

1 个答案:

答案 0 :(得分:6)

替换

Chart.defaults.global = {
    responsive: false
    // animation: true
}

Chart.defaults.global.responsive = false;
// Chart.defaults.global.animation = true;

您不想替换所有默认值,只需要替换所需的默认值。