传递给d3.sort的排序回调

时间:2013-07-02 22:33:41

标签: javascript coffeescript d3.js

我有这样的选择 -

@thead.append("tr")
    .selectAll("th")
    .data(@columns)
    .enter()
    .append("th")
    .text((col)-> return col)
    .on("click",(d)=>@rows.selectAll("tr").sort(@strAsc))

其中strAsc是这样的函数

    strAsc:(x,y)->
    console.log "strAsc being called"
    return ((x < y) ? -1 : ((x > y) ?  1 : 0))

然而,当我点击th时,console.log永远不会运行。为什么呢?

0 个答案:

没有答案