标签: d3.js nvd3.js
单击图表时如何获取图表上一个条形的属性值并更改其边框颜色?我正在使用多栏图表
答案 0 :(得分:2)
这不是NVD3中的一个选项,但你可以自己做:
d3.selectAll(".nv-bar").on("click", function(d) { d3.select(this).style("fill", "red"); // d is the current data console.log(d); });