使用HTML输入在D3中进行动态过滤

时间:2015-03-08 01:52:48

标签: javascript html d3.js filtering

我远远不是一个D3极客,只是制作了我的第一个散点图中的一个'从制表符分隔文件中读取。每个点(或圆)都有一个日期(x轴)和一个附加到它的计数(y轴)和一个句子,它在鼠标悬停时显示。包含数据的代码和选项卡文件位于:

https://gist.github.com/sytpp/3a070a6ed6834169a85b

我添加了一个文本框,我可以在其中输入搜索字词(第39-42行),当我点击“告诉我'我希望它突出显示与第2列(谁)和/或3(什么)数据中的搜索词匹配的所有点。我设法在搜索时改变所有点(包括图例)的不透明度(第193-201行),但没有弄清楚如何根据文本匹配动态选择子部分。

function handleClick(event){
    console.log(document.getElementById("myVal").value)
    draw(document.getElementById("myVal").value)
return false;
}

function draw(val){
    d3.select("body").selectAll("circle").style("opacity", .3);
}

我在流数据上找到了类似的例子但无法重现它。非常感谢你的帮助!

1 个答案:

答案 0 :(得分:3)

您的可视化非常酷!我查看了你的代码,你只需做一些小改动:

首先,你当前的函数draw()包含错误的选择。

d3.select("body").selectAll("circle").style("opacity", .3);

它不仅包含图表中的圆圈,还包含图例中的圆圈!因此,当您在图表中绘制圆圈时,请为它们指定正确的类名称:

svg.selectAll("circle.dot")                                    
    .data(data)                                            
    .enter()...

因此在函数绘制中,您可以通过以下方式获得正确的选择:

d3.select("body").selectAll("circle.dot")

要设置与搜索匹配的圆圈的不透明度,您只需在回调函数中编写逻辑。我将回调分开(并将搜索词存储在全局变量中)......

var valOpacity = function(d) { 
      if ((d.what.search(currentSearchTerm) != -1) || (d.who.search(currentSearchTerm) != -1)) {
        return 1;
      }
      else {
        return 0.1;
      }
    };

因为我们可以首先重复使用它来进行选择...

function draw(){
    d3.select("body").selectAll("circle.dot").style("opacity", valOpacity);
}

...第二个是调整mouseout事件以正确设置不透明度:

.on("mouseout", function(){
        d3.select(this).transition().duration(50).attr("r", 5).style("opacity", valOpacity); 
    });

以下是完整的工作代码:

<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */

body { font: 16px Arial;}

path { 
    stroke: steelblue;
    stroke-width: 2;
    fill: none;
}

.axis path,
.axis line {
    fill: none;
    stroke: grey;
    stroke-width: 1;
    shape-rendering: crispEdges;
}

div.tooltip {
    position: absolute;    
    text-align: left; 
    width: 300px;    
    height: 150px;        
    padding: 2px;    
    font: 16px Arial;   
    background: none;    
    border: 0px;                    
    border-radius: 2px;
}



</style>
<body>

<form name="myform" onSubmit="return handleClick()">
        <input type="text" id="myVal" placeholder="Search WHO should do WHAT">
        <input name="Submit"  type="submit" value="Tell me!" >
</form>  

<!-- load the d3.js library -->    
<script type=
    "text/javascript" src="http://d3js.org/d3.v3.min.js">
</script>

<script>

// Set the dimensions of the canvas / graph
var margin = {top: 30, right: 20, bottom: 30, left: 60},
    width = 800 - margin.left - margin.right,
    height = 600 - margin.top - margin.bottom;

// Parse the date / time
var parseDate = d3.time.format("%Y-%m-%d").parse;
var formatTime = d3.time.format("%d %B %Y");// Format tooltip date / time

var currentSearchTerm = "";

// Set the rangestrann
var x = d3.time.scale().range([0, width]);
var y = d3.scale.linear().range([height, 0]);

var flags = ["LEADERS","LETTERS,BRIEFINGS,ETC...","INTERNATIONAL","ASIA (incl. CHINA)","AMERICAS", "EUROPE (incl. BRITAIN)","BUSINESS"]
var cols = ["#b2182b","#969696","#252525","#08519c","#fec503","#5aae61","#de77ae" ]

var color = d3.scale.ordinal().domain(flags).range(cols);

// Define the axes
var xAxis = d3.svg.axis().scale(x)
    .orient("bottom").ticks(5);

var yAxis = d3.svg.axis().scale(y)
    .orient("left").ticks(5);


// Define 'div' for tooltips
var div = d3.select("body")
    .append("div")  // declare the tooltip div 
    .attr("class", "tooltip")
    .style("opacity", 0);

// Adds the svg canvas
var svg = d3.select("body")
    .append("svg")
        .attr("width", width + margin.left + margin.right)
        .attr("height", height + margin.top + margin.bottom)
    .append("g")
        .attr("transform", 
              "translate(" + margin.left + "," + margin.top + ")");


// Legend              
var legend = d3.select("body").append("svg")
                    .attr("width",200)
                    .attr("height",200)
                    .append("g")
                        .attr("transform","translate(10,14)");


legend.append("circle").attr("cx", 10).attr("cy", 10).style("fill", cols[0]).attr("r", 20).style("opacity", .7);
    legend.append("text").attr("x", 40).attr("y",16).style("font-size","15px").text("Click to read article.");

legend.append("circle").attr("cx", 10).attr("cy", 55).style("fill", cols[6]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",60).style("font-size","12px").text(flags[6]);

legend.append("circle").attr("cx", 10).attr("cy", 70).style("fill", cols[5]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",75).style("font-size","12px").text(flags[5]);

legend.append("circle").attr("cx", 10).attr("cy", 85).style("fill", cols[4]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",90).style("font-size","12px").text(flags[4]);

legend.append("circle").attr("cx", 10).attr("cy", 100).style("fill", cols[3]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",105).style("font-size","12px").text(flags[3]);

legend.append("circle").attr("cx", 10).attr("cy", 115).style("fill", cols[2]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",120).style("font-size","12px").text(flags[2]);

legend.append("circle").attr("cx", 10).attr("cy", 130).style("fill", cols[1]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",135).style("font-size","12px").text(flags[1]);

legend.append("circle").attr("cx", 10).attr("cy", 145).style("fill", cols[0]).attr("r", 5);
    legend.append("text").attr("x", 25).attr("y",150).style("font-size","12px").text(flags[0]);


// Get the data
d3.tsv("EcoSHOULDS.tab", function(error, data) {

    data.forEach(function(d) {
        d.date = parseDate(d.date);
    });

    // Scale the range of the data
    x.domain(d3.extent(data, function(d) { return d.date; }));
    y.domain([0,50]);


    // draw the scatterplot
    svg.selectAll("circle.dot")                                    
        .data(data)                                            
        .enter()
        .append("a")
            .attr("xlink:href", function(d) { return d.link; })
        .append("circle")
          .attr("class", "dot")
            .attr("r", 5)    
            .attr("cx", function(d) { return x(d.date); })         
            .attr("cy", function(d) { return y(d.lala); })
            .attr("fill", function(d){ return color(d.flag); })

    // MOUSEOVER EVENTS - Tooltip stuff after this etc
        .on("mouseover", function(d) {   

        d3.select(this).transition().duration(50).attr("r", 20).style("opacity", .7); 


            div.transition()
                .duration(500)    
                .style("fill", 0);
            div.transition()
                .duration(200)    
                .style("opacity", 1);    
            div .html(
                d.who + "<br/><b><big>SHOULD</big></b><br/>" + 
                d.what + "..." + "<br/><br/><small>" + 
                formatTime(d.date) + "  [ Section: " + 
                d.flag + " ]</small><br/>")     
                .style("left", 810 + "px")             
                .style("top", 100 + "px");
            })

        .on("mouseout", function(){
                d3.select(this).transition().duration(50).attr("r", 5).style("opacity", valOpacity); 
            });

    // Add the X Axis
    svg.append("g")    
        .attr("class", "x axis")
        .attr("transform", "translate(0," + height + ")")
        .call(xAxis);

    // Add the Y Axis
    svg.append("g")    
        .attr("class", "y axis")
        .attr("transform", "translate(-30," + 0 + ")")
        .call(yAxis);

});


function handleClick(event){
  currentSearchTerm = document.getElementById("myVal").value;
    console.log(currentSearchTerm);
    draw(currentSearchTerm);
return false;
}

var valOpacity = function(d) { 
      if ((d.what.search(currentSearchTerm) != -1) || (d.who.search(currentSearchTerm) != -1)) {
        return 1;
      }
      else {
        return 0.1;
      }
    };

function draw(){
    d3.select("body").selectAll("circle.dot").style("opacity", valOpacity);
}

</script>
</body>