如何使工具提示显示D3分组条形图中的数量?

时间:2014-10-19 19:42:02

标签: d3.js

我有5年的分组条形图数据,每年包含两个变量。当我将鼠标悬停在每个栏上时,我希望它显示该栏的特定值。但我不确定如何在我的代码的最底部设置工具提示的样式,以便在鼠标悬停在栏上时显示我的CSV中的实际数量。

我希望我的CSV中的具体美元金额显示在下面我写的“金额”中。我能够显示该文本中的美元符号,只是不从我的CSV中提取任何数据。

    var margin = {top: 20, right: 20, bottom: 30, left: 40},
    width = 600 - margin.left - margin.right,
    height = 500 - margin.top - margin.bottom;

var x0 = d3.scale.ordinal()
    .rangeRoundBands([0, width], .1);

var x1 = d3.scale.ordinal();

var y = d3.scale.linear()
    .range([height, 0]);

var color = d3.scale.ordinal()
    .range(["#98abc5", "#7b6888"]);

var xAxis = d3.svg.axis()
    .scale(x0)
    .orient("bottom");

var yAxis = d3.svg.axis()
    .scale(y)
    .orient("left")
    .tickFormat(d3.format(".2s"));

var svg = d3.select(".chart").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 + ")");

$(document).ready(function() {

});

d3.csv("data/data.csv", function(error, data) {
  var restAmt = d3.keys(data[0]).filter(function(key) { return key !== "year"; });

data.forEach(function(d) {
    d.totalrest = restAmt.map(function(name) { return {name: name, value: +d[name]}; });
  });

  x0.domain(data.map(function(d) { return d.year; }));
  x1.domain(restAmt).rangeRoundBands([0, x0.rangeBand()]);
  y.domain([0, d3.max(data, function(d) { return d3.max(d.totalrest, function(d) { return d.value; }); })]);

var year = svg.selectAll(".year")
      .data(data)
      .enter().append("g")
      .attr("class", "g")
      .attr("transform", function(d) { return "translate(" + x0(d.year) + ",0)"; });

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

//draw Y axis
  svg.append("g")
      .attr("class", "y axis")
      .call(yAxis)
      .append("text")
      .attr("transform", "rotate(-90)")
      .attr("y", 6)
      .attr("dy", ".71em")
      .style("text-anchor", "end")
      .text("Millions of Dollars");

  year.selectAll("rest")
      .data(function(d) { return d.totalrest; })
    .enter().append("rect")
      .attr("width", x1.rangeBand())
      .attr("x", function(d) { return x1(d.name); })
      .attr("y", function(d) { return y(d.value); })
      .attr("height", function(d) { return height - y(d.value); })
      .style("fill", function(d) { return color(d.name); })

      .on("mouseover", function(){return tooltip.style("visibility", "visible"); })
       .on("mousemove", function(){return tooltip.style("top", (event.pageY-120)+"px").style("left",(event.pageX-120)+"px"); })
        .on("mouseout", function(){return tooltip.style("visibility", "hidden");} )

 var tooltip = d3.select(".chart")
  .append("g")
  .style("position", "absolute")
  .style("z-index", "0")
  .style("visibility", "hidden")
  .text(function(){
  return '$'+"amount here"
      })

2 个答案:

答案 0 :(得分:1)

首先,看看你是否可以创建minimal complete verifiable example。我无法让你运行代码,所以我在这里猜测。

只是通过查看,当您在工具提示上设置文本时,查看是否绑定了数据,以便您可以将其传入。

.text(function(d){
      return '$'+d // or d.whatever
 })

如果失败,您应该能够使用上面的.on拉出相同的技巧,并将该数据传递给创建工具提示的函数。

话虽这么说,我感觉你可能正在隐藏并显示每个工具提示。如果是这种情况,并且数据绑定到工具提示,您可以创建一个工具提示函数,该函数接收indx然后调用.style("visibility", function(d,i){return i === indx ? null : "hidden"),这将取消隐藏{{1}的工具提示}}。您可以在执行开始时使用indx运行该函数以隐藏所有工具提示。或者,只需在需要时创建工具提示,而不是切换其可见性。

答案 1 :(得分:1)

这里只是猜测csv中的金额字段称为金额,请使用d.amount作为示例:

您可以在'鼠标悬停'中添加参数d event,并将amout值绑定到tooltip元素中作为html元素:

var div = d3.select('body').append('div')   
    .attr('class', 'tooltip')               
    .style('opacity', 0);

year.selectAll("rest")
...
.on('mouseover', function(d) {      
        div.transition()        
            .duration(200)      
            .style('opacity', .9);      
        div.html('<h3>' + d.amount + '</h3>' + '<p>' + d.amount + '</p>')  
            .style('left', (d3.event.pageX) + 'px')     
            .style('top', (d3.event.pageY - 28) + 'px');    
        })