无法使用 d3.selectAll 访问 table 列值

Unable to access the table column values using d3.selectAll

我想根据值(热图)向 table 列添加颜色,但我无法 select td.dc-table-列_4 改变它的颜色。我尝试了所有方法,但没有用。

这是工作演示:https://blockbuilder.org/ninjakx/f442f5ccbf25eb853c7508194688d25d

第 144 行 log("SSSSSSSSSS:",d3.selectAll('td.dc-table-column _4'));,共 index.js

我正在尝试在概率值上涂上颜色,这将是这样的:http://bl.ocks.org/curran/3094b37e63b918bab0a06787e161607b

使用 renderlet

我做到了。

.renderlet(function(chart){
    chart.selectAll('td.dc-table-column._4')
         .style("background-color", function(d){ 
          return color(d.predicted_probability)});
  });