在mg表中加载json给出的数据是未定义的

时间:2015-05-18 12:25:53

标签: javascript html json

此脚本不会加载任何数据。

<script lang="JavaScript">
    d3.json('file:///C:/Software/Data/dirk/development/D3_TestLab/data/StatusTabel.json', function (error,data) {

        console.log(JSON.stringify(data));

        var table_data = data

        var table1 = MG.data_table({
            data: data, //table_data,
            //title: '',
            //description: 'A table has many of the same properties as any other data graphic.',
            show_tooltips: true
        })

            .target('#div1')

            .number({ accessor: 'BU', label: 'BU', width: 120, font_size: 14, layout: 'center' })
            .number({ accessor: 'Lines', label: 'Lines', width: 190, font_size: 14, layout: 'center' })
            .number({ accessor: 'Shift', label: 'Shift', width: 270, font_size: 14 })

            .display();
    })
</script>

我收到错误:

  

TypeError:a.data未定义。

任何人都可以帮助我吗?

1 个答案:

答案 0 :(得分:0)

我尝试将存储在笔记本电脑上的文件夹中的json数据加载到度量图形数据表中。 加载由D3.json完成,然后放置数据完成 MG.data_table函数。

只有D3.json不会加载数据。