1

当我尝试根据所选列过滤数据时,返回值与预期不符。我正在尝试根据通过单击表中的列选择的应用程序来过滤数据。

    d3.text(fileRef, function(datasetText) 
            {


        parsedCSVref = d3.csv.parseRows(datasetText);

        var sampleHTMLref = d3.select("#TableContents")
            .append("table")
            .attr("style", "margin-left: 20px")
            .selectAll("tr")
                .filter(function(d){ return d.Application === a.innerHTML})
            .data(parsedCSVref)
            .enter().append("tr")
.selectAll("td")

            .data(function(d){return d;})
            .enter().append("td")
4

0 回答 0