Using D3 transition method with data for scatter plot

前端 未结 2 353
清歌不尽
清歌不尽 2020-12-10 12:53

So I\'m new to D3 and have little exp with JavaScript in general. So I have been following some tutorials am currently using source code that creates a basic scatter plot.

相关标签:
2条回答
  • 2020-12-10 13:20

    First, before addressing the transition issue, you need to refactor things a bit. You're going to want to call an update(newData) function every time your data changes, and have this function do all the necessary updates.

    This tutorial by mbostock describes exactly the "general update pattern" you'll need.

    Parts II and III then go on to explaining how to work transitions into this pattern.

    They're very short. And once you understand them, you'll have just about all the info you need to do this.

    0 讨论(0)
  • 2020-12-10 13:28

    I guess you just have to specify .transition() function after .data(newData) function

    In the following example Y2 is a node in a JSON file, where Y1 was the previous one used

    Example:

    //Creating the button
    var button = d3.select("body")
    .append("input")
    .attr("type","button")
    .attr("value", "A button");
    
    //Transitioning process
    button.on("click", function()
    {   circles
        .data(data.Y2)
        .transition()
        .attr("cx", function(d)
        {
            return d[0];
        }
        )
        .attr("cy", 300);
    }
    )
    
    0 讨论(0)
提交回复
热议问题