Git Product home page Git Product logo

Comments (8)

mbostock avatar mbostock commented on May 5, 2024

Have you tested your propose change? Note that lines are rendered offset by half a pixel to produce crisp edges:

line = line.merge(tickEnter.append("line")
    .attr("stroke", "#000")
    .attr(x + "2", k * tickSizeInner)
    .attr(y + "1", 0.5)
    .attr(y + "2", 0.5));

from d3-axis.

llchan avatar llchan commented on May 5, 2024

I'm admittedly somewhat new to d3.js and I am not familiar with the build process, so i haven't tested the fix.

However, I made an example here to demonstrate what I'm seeing.
https://jsfiddle.net/vpb7aLpc/3/
Notice that the tick marks are slightly off-center. The console output shows e.g. translate by 8 pixels for a 15-pixel-wide bar, which I think is off by 1. The half pixel shift mentioned above only puts it squarely in that pixel.

Am I misunderstanding something?

from d3-axis.

mbostock avatar mbostock commented on May 5, 2024

Here’s a pixel grid overlaid on your example:

untitled 2

And without rangeRound for comparison:

untitled 1

I see what you mean now. If the bands are 15px wide, then there should be 7px on either side of the tick (7 + 1 + 7 = 15). Instead there is 8px on the left side and 6px on the right side. And both range and rangeRound should produce the same result.

from d3-axis.

mbostock avatar mbostock commented on May 5, 2024

Hmm. Making the proposed change fixes the above example, but negatively affects point scales without rangeRound. Here’s before (with the ticks in red, so they can be seen overlaid on top of the domain path):

untitled 4

And after:

untitled 3

However, we can fix this fairly easily like so:

var offset = Math.max(0, scale.bandwidth() - 1) / 2;

from d3-axis.

mbostock avatar mbostock commented on May 5, 2024

Okay, fix pending in #38. Look good?

from d3-axis.

llchan avatar llchan commented on May 5, 2024

Appreciate the time taken to look into this! A few comments:

  • The max with 0 would only come into play if bandwidth is < 1 pixel, in which case the shift-by-half-pixel logic is going to make it look funny anyways. So I think it might be unnecessary?
  • I am a little confused about the second set of screenshots: how come the 0/2 tick labels are now shifted to the edges of the band? Is this just a screenshot issue?

from d3-axis.

mbostock avatar mbostock commented on May 5, 2024

The bandwidth is zero for point scales (d3.scalePoint), which is what I was discussing in #37 (comment).

from d3-axis.

llchan avatar llchan commented on May 5, 2024

Got it. I wasn't familiar with that scale so I'd glossed over the phrase "point scale" when I read your comment. I think it looks good to me.

from d3-axis.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.