-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
[Fix]: React Charting Heat Map Chart tooltip appears above the wrong cell #29800
Conversation
@microsoft-github-policy-service agree |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 30757e7:
|
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
change/@fluentui-react-charting-cc85e8df-5d8a-4a55-b0fe-7e5806540c7c.json
Show resolved
Hide resolved
📊 Bundle size report🤖 This report was generated against 9000e9af6731db4c76c13715fd5611bc5c4c9598 |
🕵 fluentuiv8 No visual regressions between this PR and main |
Asset size changesSize Auditor did not detect a change in bundle size for any component! Baseline commit: 9000e9af6731db4c76c13715fd5611bc5c4c9598 (build) |
* feat: Selection - export selection utils * api
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
@harsh9975 This fix is merged. Thanks for your contribution. Do let me know if you are interested to contribute to fix more issues in the fluent react charting library. We welcome contributions from the community. |
@AtishayMsft yes, I am interested in contributing to more fixes. |
@harsh9975 - Great. Feel free to join the fluent charting community @ https://aka.ms/FluentCharting/discord . We can discuss about few pending issues there. |
Screen.Recording.2023-11-09.at.4.40.01.PM.mov
Previous Behavior
When you hover over a cell in the heat map, a tooltip appears. It is supposed to appear above that cell. However, for certain cells, it appears above the wrong cell.
New Behavior
There was a small issue whenever we are hovering over index [1,10] the tooltip was showing in [11,0] cell. reason earlier it was storing both the index as string
110
and110
which created the conflict. however i have adddedx1y10
andx11y0
to differentiate.Related Issue(s)
#29740
#29741