javascript - 同时具有鼠标事件和栏过渡

标签 javascript html d3.js mouseevent

我的目的是创建一个图表,每次绘制/重绘时都会有一个条形高度过渡,然后一旦显示条形,就可以有鼠标事件(mouseenter、mouseleave和mousemove)来显示工具提示以及您将鼠标悬停在其上方的酒吧的信息。

我已经做到了鼠标事件正常工作,但是我在哪里添加过渡?如果我将过渡添加到 '.attr("height")' 上方,则过渡会起作用,但 X 轴和 Y 轴不会绘制,并且出现错误“未知类型:mouseenter”。如果我将过渡放置在栏选择之外,并且执行“bar.transition()...”,过渡不会显示,但会绘制 X 轴和 Y 轴,并且鼠标事件起作用。

我错过了什么吗?我对 D3/javascript 嵌套函数如何工作的理解很差,因为我们从未在类里面讨论过它们,所以我很可能忽略了如何应用 D3 属性的基本原理等。

编辑:看看它,我是否应该在

之上声明转换
.attr('height', function (d)...

我应该将点击事件移至底部,以便它

bar.on('mouseenter', function (d)...

当前代码:

function drawHistogram(type = 3, title = 'Total Count by Name - Alphabetically') {
    var url = "histogramData.tsv";

    var margin = 100;
    var width = 1000 - (margin * 2);
    var height = 500 - (margin * 2);

    var x = d3.scaleBand()
        .range([0, width])
        .padding(0.1); // space between bars

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

    var svg = d3.select('#graphBox').append('svg')
        .attr('width', width + margin + margin)
        .attr('height', height + margin + margin)
        .append('g')
        .attr('transform',
            'translate(' + margin + ',' + margin + ')');

    // add graph title and x/y labels
    svg.append('text')
        ...

    var gradient = d3.scaleLinear()
        .domain([0, 50])
        .range(['rgb(253,203,90)', 'rgb(253,56,170)']);

    d3.tsv(url, function (error, data) {
        if (error) throw error;

        // sort data based on type
        if (type == 0) { // name Z to A
            data.sort(function (a, b) {
                return d3.descending(a.name, b.name)
            });
        } else if (type == 1) { // count lowest to highest
            data.sort(function (a, b) {
                return a.count - b.count;
            });
        } else if (type == 2) { // count highest to lowest
            data.sort(function (a, b) {
                return b.count - a.count;
            });
        } // name A to Z

        data.forEach(function (d) {
            d.count = +d.count;
        });

        x.domain(data.map(function (d) {
            return d.name;
        }));

        y.domain([0, d3.max(data, function (d) {
            return d.count;
        })]);

        var bar = svg.selectAll('.bar')
            .data(data)
            .enter()
            .append('rect')
            .attr('class', 'bar')

            .attr('x', function (d) {
                return x(d.name);
            })

            .attr('y', function (d) {
                return y(d.count);
            })
            .attr('width', x.bandwidth())

            // This is the transition code, this transition will allow the bars to dropdown. 
            // If you uncomment this, the bar effect will work as intended, however, my axis
            // are no longer drawn and the mouse events do not work. But the transition works.

            /*
            .transition()
            .duration(5000)
            .delay(function (d, i) {
                return i * 20;
            })
            */

            .attr('height', function (d) {
                return height - y(d.count);
            })

            // give bars horizontal gradient fill
            .style('fill', function (d, i) {
                return gradient(i);
            })

            .on('mouseenter', function (d) {
                bar = d3.select(this)
                    .attr('opacity', 0.5)

                tooltip.style('display', null)
                    .raise()
            })

            .on('mouseleave', function (d) {
                d3.select(this).attr('opacity', 1)
                tooltip.style('display', 'none')
            })

            .on('mousemove', function (d) {
                var xPos = d3.mouse(this)[0] + 5;
                var yPos = d3.mouse(this)[1] - 40;
                tooltip.attr('transform', 'translate(' + xPos + ',' + yPos + ')');
                tooltip.select('#name').text('Name: ' + d.name);
                tooltip.select('#count').text('Count: ' + d.count);
            });

        // I tried to add the transition outside of the bar's creation.
        // and call it here while adding the transition.
        // The transition here does not do anything but the axis are drawn
        // and mouse events work properly. 

        /*
        bar.transition()
            .duration(5000)
            .delay(function (d, i) {
                return i * 20;
            })
        */

        // add x and y axis legends
        svg.append('g')
            ...

        // add a clickable line over the x axis to sort chart alphabetically 
        svg.append('line')
            ...

        // add a clickable line over the y axis to sort chart by value
        svg.append('line')
            ....

    });

    // tooltip item
    var tooltip = svg.append('g')
        .attr('class', 'tooltip')
        .style('display', 'none');

    tooltip.append('rect')
        .attr('width', 80)
        .attr('height', 35)
        .attr('fill', 'white')
        .style('opacity', 1);

    tooltip.append('text')
        .attr('id', 'name')
        .attr('x', '0.5em')
        .attr('dy', '1.3em')
        .style('text-anchor', 'left')

    tooltip.append('text')
        .attr('id', 'count')
        .attr('x', '0.5em')
        .attr('dy', '2.3em')
        .style('text-anchor', 'left')
}

最佳答案

accepted answer中有一个小误解:您可以在转换中订阅鼠标事件,这不是问题。

问题只是方法名称的问题。无论出于何种原因,D3 创建者决定给两种不同的方法赋予相同的名称。因此,这里的on():

selection.on

与这里的on()方法相同吗:

transition.on

它们是不同的方法,但具有相同的名称。话虽如此,transition.on 不用于鼠标事件(而是使用 selection.on),并且它只接受 4 个类型名:

  • “开始”
  • “结束”
  • “中断”
  • “取消”

这里有一个演示,显示您可以在转换期间订阅鼠标事件,前提是您使用 selection.on (在本例中为 d3.select(this))。上...)。将鼠标悬停在黑色矩形上,没有鼠标事件监听器。转换开始后,鼠标事件监听器开始工作:

const rect = d3.select("rect");
rect.transition()
  .delay(1000)
  .duration(5000)
  .attr("width", 300)
  .on("start", function() {
    d3.select(this).on("mousemove", function() {
      console.log("The mouse is over!");
    })
  })
<script src="https://d3js.org/d3.v5.min.js"></script>
<svg>
  <rect width="100" height="150"></rect>
</svg>

或者您也可以使用鲜为人知的 transition.selection() ,它返回与转换相对应的选择。与上面代码片段的区别在于,这里监听器是立即附加的:

const rect = d3.select("rect");
rect.transition()
  .delay(1000)
  .duration(5000)
  .attr("width", 300)
  .selection()
  .on("mousemove", function() {
    console.log("The mouse is over!");
  })
<script src="https://d3js.org/d3.v5.min.js"></script>
<svg>
  <rect width="100" height="150"></rect>
</svg>

关于javascript - 同时具有鼠标事件和栏过渡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58105360/

相关文章:

javascript - D3 图表工具 : How to add label at right of target line (additional horizontal line) in column chart

javascript - 使用 DateTimePicker 插件的 JQuery 不起作用

javascript - Angular js ng-init - 值字段不更新

html - 如何垂直对齐水平列表中的元素

javascript - jQuery - 对模态窗口的打开和关闭事件的意外递归操作

php - 使用 SQL 查询填充 D3.js 饼图

javascript - 移动对象以使用 Canvas 单击 X 和 Y

javascript - jQuery insideWidth 无法与 } else { 一起使用而不进行页面刷新

html - 在 div 的右下角对齐一个 ionic 按钮

javascript - 工具提示未显示在 d3 图表中点/圆顶部的附加 'rect' 处