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

[charts] Fix radar hover #17134

Merged
merged 11 commits into from
Mar 26, 2025
Merged

Conversation

alexfauquette
Copy link
Member

  1. Prevent charts from breaking if no cartesian axis found
  2. Add interaction solector for polar charts
  3. Use it for radar chart

Remaining:

Add test on radar chart for the axis highlight

@alexfauquette alexfauquette added breaking change component: charts This is the name of the generic UI component, not the React module! labels Mar 25, 2025
Copy link

github-actions bot commented Mar 25, 2025

Thanks for adding a type label to the PR! 👍

@mui-bot
Copy link

mui-bot commented Mar 25, 2025

Deploy preview: https://deploy-preview-17134--material-ui-x.netlify.app/

Generated by 🚫 dangerJS against 2d2ca49

Copy link

codspeed-hq bot commented Mar 25, 2025

CodSpeed Performance Report

Merging #17134 will not alter performance

Comparing alexfauquette:fix-radar-hover (2d2ca49) with master (4877ff1)

Summary

✅ 7 untouched benchmarks
🆕 1 new benchmarks

Benchmarks breakdown

Benchmark BASE HEAD Change
🆕 PieChart with big data amount N/A 180.2 ms N/A

@alexfauquette alexfauquette added regression A bug, but worse and removed breaking change labels Mar 26, 2025
@alexfauquette alexfauquette marked this pull request as ready for review March 26, 2025 10:04
Comment on lines +1 to +12
export const generateSvg2rotation =
(center: { cx: number; cy: number }) => (x: number, y: number) =>
Math.atan2(x - center.cx, center.cy - y);

export const generateSvg2polar =
(center: { cx: number; cy: number }) =>
(x: number, y: number): [number, number] => {
const angle = Math.atan2(x - center.cx, center.cy - y);
return [Math.sqrt((x - center.cx) ** 2 + (center.cy - y) ** 2), angle];
};

export const generatePolar2svg =
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are we converting between cartesian to/from polar coordinates? Would it make sense to call these polarToCartesian or cartesianToPolar instead?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I preferred svg over cartesian to avoid the confusion with the cartesian charts

Comment on lines +30 to +31
* For a pointer coordinate, this function returns the value and dataIndex associated.
* Returns `null` if the coordinate is outside of values.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It can also return undefined, right? Should we update the docs?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should not be possible. The computation of the dataIndex in the previouse selector is here to prevent that

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since on line 43 we're doing axisConfig.data?.[dataIndex], if axisConfig.data is null or undefined, then this function will return undefined, won't it?

Same if dataIndex is outside the bounds of axisConfig.data.

@alexfauquette alexfauquette merged commit d4c087c into mui:master Mar 26, 2025
22 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component: charts This is the name of the generic UI component, not the React module! regression A bug, but worse
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants