即使折线的不透明度为零,D3折线图线也会在悬停时选择

时间:2018-12-11 10:28:56

标签: javascript d3.js linechart onhover

我的应用程序中有一个D3折线图,将鼠标悬停在该行上方时,会在显示行名称的行上方显示文本。之后,我在图表上加上了一个图例,并且图例允许在单击图例项时使线条出现和消失。我的示例代码如下。但是现在它已经引起了这样的问题。现在,我将从图例中选择的线的不透明度设置为零,该线消失了。但是,如果我将鼠标悬停在行较早的区域,则仍会显示悬停文本。有谁知道避免这种问题的解决方案。

通过单击图例中的两个项目可以看到此问题,然后所有行均消失。但是,如果将鼠标移到线条较早的位置的图表上,您会看到文本将悬停显示

示例:https://jsfiddle.net/yasirunilan/ymavtsbj/4/

var data = [{
    name: "USA",
    values: [{
        date: "2000",
        price: "100"
      },
      {
        date: "2001",
        price: "110"
      },
      {
        date: "2002",
        price: "145"
      },
      {
        date: "2003",
        price: "241"
      },
      {
        date: "2004",
        price: "101"
      },
      {
        date: "2005",
        price: "90"
      },
      {
        date: "2006",
        price: "10"
      },
      {
        date: "2007",
        price: "35"
      },
      {
        date: "2008",
        price: "21"
      },
      {
        date: "2009",
        price: "201"
      }
    ]
  },
  {
    name: "Canada",
    values: [{
        date: "2000",
        price: "100"
      },
      {
        date: "2001",
        price: "110"
      },
      {
        date: "2002",
        price: "145"
      },
      {
        date: "2003",
        price: "241"
      },
      {
        date: "2004",
        price: "101"
      },
      {
        date: "2005",
        price: "90"
      },
      {
        date: "2006",
        price: "10"
      },
      {
        date: "2007",
        price: "35"
      },
      {
        date: "2008",
        price: "21"
      },
      {
        date: "2009",
        price: "201"
      }
    ]
  }
];
var width = 500;
var height = 300;
var margin = 50;
var duration = 250;

var lineOpacity = "0.25";
var lineOpacityHover = "0.85";
var otherLinesOpacityHover = "0.1";
var lineStroke = "1.5px";
var lineStrokeHover = "2.5px";

var circleOpacity = '0.85';
var circleOpacityOnLineHover = "0.25"
var circleRadius = 3;
var circleRadiusHover = 6;


/* Format Data */
var parseDate = d3.timeParse("%Y");
data.forEach(function(d) {
  d.values.forEach(function(d) {
    d.date = parseDate(d.date);
    d.price = +d.price;
  });
});


/* Scale */
var xScale = d3.scaleTime()
  .domain(d3.extent(data[0].values, d => d.date))
  .range([0, width - margin]);

var yScale = d3.scaleLinear()
  .domain([0, d3.max(data[0].values, d => d.price)])
  .range([height - margin, 0]);

var color = d3.scaleOrdinal(d3.schemeCategory10);

/* Add SVG */
var svg = d3.select("#chart").append("svg")
  .attr("width", (width + margin) + "px")
  .attr("height", (height + margin) + "px")
  .append('g')
  .attr("transform", `translate(${margin}, ${margin})`);


/* Add line into SVG */
var line = d3.line()
  .x(d => xScale(d.date))
  .y(d => yScale(d.price));

let lines = svg.append('g')
  .attr('class', 'lines');

lines.selectAll('.line-group')
  .data(data).enter()
  .append('g')
  .attr('id', d => d.name.replace(/\s+/g, '') + "-line")
  .attr('class', 'line-group')
  .on("mouseover", function(d, i) {
    svg.append("text")
      .attr("class", "title-text")
      .attr("font-weight", "bold")
      .style("fill", color(i))
      .text(d.name)
      .attr("text-anchor", "middle")
      .attr("x", (width - margin) / 2)
      .attr("y", -30);
  })
  .on("mouseout", function(d) {
    svg.select(".title-text").remove();
  })
  .append('path')
  .attr('class', 'line')
  .attr('d', d => line(d.values))
  .style('stroke', d => color(d.name))
  .style('opacity', lineOpacity)
  .on("mouseover", function(d) {
    d3.selectAll('.line')
      .style('opacity', otherLinesOpacityHover);
    d3.selectAll('.circle')
      .style('opacity', circleOpacityOnLineHover);
    d3.select(this)
      .style('opacity', lineOpacityHover)
      .style("stroke-width", lineStrokeHover)
      .style("cursor", "pointer");
  })
  .on("mouseout", function(d) {
    d3.selectAll(".line")
      .style('opacity', lineOpacity);
    d3.selectAll('.circle')
      .style('opacity', circleOpacity);
    d3.select(this)
      .style("stroke-width", lineStroke)
      .style("cursor", "none");
  });


/* Add circles in the line */
lines.selectAll("circle-group")
  .data(data).enter()
  .append("g")
  .attr('id', d => d.name.replace(/\s+/g, '') + "-circle")
  .style("fill", d => color(d.name))
  .selectAll("circle")
  .data(d => d.values).enter()
  .append("g")
  .attr("class", "circle")
  .on("mouseover", function(d) {
    d3.select(this)
      .style("cursor", "pointer")
      .append("text")
      .attr("class", "text")
      .text(`${d.price}`)
      .attr("x", d => xScale(d.date) + 5)
      .attr("y", d => yScale(d.price) - 10);
  })
  .on("mouseout", function(d) {
    d3.select(this)
      .style("cursor", "none")
      .transition()
      .duration(duration)
      .selectAll(".text").remove();
  })
  .append("circle")
  .attr("cx", d => xScale(d.date))
  .attr("cy", d => yScale(d.price))
  .attr("r", circleRadius)
  .style('opacity', circleOpacity)
  .on("mouseover", function(d) {
    d3.select(this)
      .transition()
      .duration(duration)
      .attr("r", circleRadiusHover);
  })
  .on("mouseout", function(d) {
    d3.select(this)
      .transition()
      .duration(duration)
      .attr("r", circleRadius);
  });


/* Add Axis into SVG */
var xAxis = d3.axisBottom(xScale).ticks(5);
var yAxis = d3.axisLeft(yScale).ticks(5);

svg.append("g")
  .attr("class", "x axis")
  .attr("transform", `translate(0, ${height-margin})`)
  .call(xAxis);

svg.append("g")
  .attr("class", "y axis")
  .call(yAxis)
  .append('text')
  .attr("y", 15)
  .attr("transform", "rotate(-90)")
  .attr("fill", "#000")
  .text("Total values");

var keys = []

// Add the Legend
var legend = d3.select("body").selectAll(".legend")
  .data(data.map(d => d.name))
  .enter().append("font")
  .attr("class", "legend") // style the legend
  .style("color", color)
  .style("margin-left", 10 + "px")
  .style("padding-left", 10 + "px")
  .html(d => d)

d3.selectAll(".legend")
  .on("click", function(d) {

    keys.includes(d) ?
      keys.splice(keys.indexOf(d), 1) :
      keys.push(d)

    d3.select(this).style("opacity", () => keys.includes(d) ? .5 : 1)

    d3.select("#" + d.replace(/\s+/g, '') + "-line")
      .transition().duration(100)
      .style("opacity", () => keys.includes(d) ? 0 : 1);
    d3.select("#" + d.replace(/\s+/g, '') + "-circle")
      .transition().duration(100)
      .style("opacity", () => keys.includes(d) ? 0 : 1);
  })

1 个答案:

答案 0 :(得分:2)

您可以将CSS pointer-events设置为none,以禁用所有鼠标交互,并在将不透明度更改回1以启用它们时将其设置为auto

您可以使用此行:

.style("pointer-events", () => keys.includes(d) ? "none" : "auto");

有效演示: JsFiddle

或者,您可以仅通过设置display css属性来替换设置不透明度和指针事件的行,如下所示:

.style("display", () => keys.includes(d) ? "none" : "inline");

有效演示: JsFiddle