最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - D3 update dataset on click and redraw the bar chart - Stack Overflow

programmeradmin1浏览0评论

I am new to d3 as well as javascript, and I am having trouble updating the dataset, as well as redrawing the bars. This is the code I have been looking at so far.

/

I have a function clickEvent, that is evoked upon a click on any bar. This function prompts for a value.

function clickEvent() 
{
    var op = prompt("Please enter the value", "");
};

What I need to do is to update the dataset at the index of the click, and redraw the rects so that they will reflect the change to the dataset.

Any help would be appreciated. Thanks.

I am new to d3 as well as javascript, and I am having trouble updating the dataset, as well as redrawing the bars. This is the code I have been looking at so far.

http://jsfiddle/TwEhT/2/

I have a function clickEvent, that is evoked upon a click on any bar. This function prompts for a value.

function clickEvent() 
{
    var op = prompt("Please enter the value", "");
};

What I need to do is to update the dataset at the index of the click, and redraw the rects so that they will reflect the change to the dataset.

Any help would be appreciated. Thanks.

Share Improve this question edited Mar 12, 2013 at 2:43 Lee Taylor 7,98416 gold badges37 silver badges53 bronze badges asked Mar 12, 2013 at 2:22 user2159121user2159121 1351 silver badge7 bronze badges 1
  • You might try looking at returning something from that clickEvent function (or, perhaps, changing an array index value in your dataset somewhere inside/related to the clickEvent function) so that the value can be reflected in your dataset/graph. – summea Commented Mar 12, 2013 at 2:52
Add a ment  | 

1 Answer 1

Reset to default 10

For a very simple example, you could update the dataset directly, and put the bar drawing code in a render() function that you can call to re-render the changes.

var dataset = [...];

function render() {
    // bind dataset to rects and draw here
}

function clickEvent(d, i) {
    var op = prompt("Please enter the value", d);
    dataset[i] = parseInt(op, 10);
    render();
};

Here's a running example in your code: http://jsfiddle/findango/TwEhT/4/

发布评论

评论列表(0)

  1. 暂无评论