Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tooltip text issue in the Visualize Data with a Heat Map in the Data Visualization Project. #611

Open
agmt92 opened this issue Aug 19, 2024 · 0 comments

Comments

@agmt92
Copy link

agmt92 commented Aug 19, 2024

Describe the bug

The tooltip is displaying the wrong months for the corresponding month on the y-axis. Additionally, the tooltip is displaying the wrong year for the cells corresponding to January along the whole X-axis (all years).

To Reproduce

Steps to reproduce the behavior:

  1. Go to the FreeCodeCamp Heat Map Demo.
  2. Hover over any cell in the heat map.
  3. Observe that the month displayed in the tooltip does not match the month on the y-axis.
  4. Hover over any cell corresponding to January.
  5. Observe that the year displayed in the tooltip is incorrect.

Expected behavior

The tooltip should display the correct month corresponding to the y-axis and the correct year for all cells, including those corresponding to January.

Screenshots

Screenshot 2024-08-19 at 18 46 24 Screenshot 2024-08-19 at 18 46 19

Device:

  • OS: macOS
  • Browser: Mozilla Firefox
  • Version: 129.0.1 (64-bit)

Additional context

In my case the issue was easily solved by adding adding + 1 to the month value.

That's a snippet of my code for returning the tooltip text correctly.

const tooltipFunct = (data) => {
    let year = data.year;
    let month = data.month;
    let variance = data.variance;
    let temperature = Math.floor((data.variance + 8.66) * 100) / 100;
    let result = `${year}, ${d3.utcFormat("%B")(d3.timeParse("%m")(month+1))} <br> Temperature:${temperature} <br> Variance: ${variance}℃`;
    return result;
}

For reference:


Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant