为了账号安全,请及时绑定邮箱和手机立即绑定

data is not defined

我加了你的新代码,但会有error, 说data is not defined.我不知道哪里做错。

d3.csv("data.csv", type, function(data){

console.log(data);

});


function type(d){

d.population = +d.population;

return d;

}


var bar_width = 50,

bar_padding = 10,

svg_width = (bar_width + bar_padding) * data.length,   <-------'data is not defined'

svg_height=500;


正在回答

1 回答

兄弟 这样才对

d3.csv("data.csv", type, function(data){

    console.log(data);
    function type(d){

        d.population = +d.population;

        return d;

    }



    var bar_width = 50,

        bar_padding = 10,

        svg_width = (bar_width + bar_padding) * data.length, 

    svg_height=500;

});


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
使用D3制作图表
  • 参与学习       37890    人
  • 解答问题       112    个

教你使用最酷的数据可视化图表,初探数据可视化奥秘

进入课程

data is not defined

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信