这是我的代码,我有 xaxis1,其中包含月份名称:一月..十二月。我想让每个月份的值可选,所以我添加了这个功能:
d3.select(".xAxis1") //selecting xAxis1 division
.selectAll(".major") //select all the tiket defined on it
.on("click",clickMe) //applay the function on clik to each value
function clickMe(){alert("I've been clicked!")}
但它不起作用?!有任何想法吗?