我是nvd3的新手,我尝试做一些事情,但我找不到合适的方法, 我会尽力清楚。我需要对nv.models.lineChart做一点改动。
我需要添加一个按钮,当我单击它时,从数据中删除最后一个元素并更新图表。我尝试这样做,但在库内创建按钮 示例:
nv.models.lineChart = function () {
d3.select("body")
.append("button")
.attr('type','button')
.text("test").on("click",function(){
//Code here ...
// I need to access data what are binding to svg here
Is there any way to do it with nvd3?
});
//============================================================
// Public Variables with Default Settings
//------------------------------------------------------------
//...
}