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] Allow multiple axes in the tooltip #17058

Merged
merged 38 commits into from
Apr 3, 2025

Conversation

alexfauquette
Copy link
Member

@alexfauquette alexfauquette commented Mar 20, 2025

This is the followup of #17039

The issue

The current behavior of Tooltip with trigger="axis" is handcrafted. The main idea was

If the default x-axis has some data we display the tooltip for it. Otherwise we look at the default y-axis

This does not scale anymore with:

  1. The request to control the tooltip
  2. The request to show multiple axes values in a tooltip
  3. The support of rotation and radius axes.

Proposed aproach

  • axes are responsible to say if they trigger the tooltip or not with triggerTooltip paprameter.
  • the default value of this parameter is defined by the seriesConfig. For now bar and line set heirs x/y axies as triggering the tooltip according to their direction
  • Knowing it the tooltip with axis trigger is open now resumes to look at all axes with triggerTooltip=true and test if the current point position corresponds to a value.

Needed refinement before merging

  • The default render of the tooltip is not exactly the same now that we can have multiple axes. Will need to go deeper in https://www.w3.org/WAI/tutorials/tables/multi-level/
  • The hook for axis tooltip signature is not the same anymore. We could add a parameter allowMultipleAxes. If this parameter is false or undefined we only return the first axis. Otherwise we return the array of axes.

Changelog

Breaking change

The tooltip DOM structure is modified to improve accessibility.
If you relied on it to apply some style or run tests, you might be impacted by this modification.

The axis tooltip displays a table per axis with the axis value in a caption.
Cells containing the series label are now th cells instead of td.

The item tooltip content is a simple p component with a span for series label and item value.

Sorry, something went wrong.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@alexfauquette alexfauquette added enhancement This is not a bug, nor a new feature component: charts This is the name of the generic UI component, not the React module! labels Mar 20, 2025
Copy link

Thanks for adding a type label to the PR! 👍

@mui-bot
Copy link

mui-bot commented Mar 20, 2025

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
Copy link

codspeed-hq bot commented Mar 20, 2025

CodSpeed Performance Report

Merging #17058 will not alter performance

Comparing alexfauquette:update-tooltip-axis (336ec8d) with master (b21ad19)

Summary

✅ 8 untouched benchmarks

export interface UseChartInteractionState {
interaction: {
/**
* The item currently interacting.
*/
item: null | ChartItemIdentifier<ChartSeriesType>;
/**
* The x- and y-axes currently interacting.
* The x/y SVG coordinate of the "main" pointer
Copy link
Member

Choose a reason for hiding this comment

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

What is the "main" pointer?

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 thaught about multip pointer interaction. Since we only store one point, it's the main one. How to handle this multi-point is an open quesiton

Copy link

This pull request has conflicts, please resolve those before we can evaluate the pull request.

@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Mar 24, 2025

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Mar 24, 2025
alexfauquette and others added 5 commits March 24, 2025 17:06
fix

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Apr 1, 2025
Copy link

github-actions bot commented Apr 1, 2025

This pull request has conflicts, please resolve those before we can evaluate the pull request.

@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Apr 1, 2025
/**
* If `true`, the axis will be ignored by the tooltip with `trigger='axis'`.
*/
disableTooltipInteraction?: boolean;
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
disableTooltipInteraction?: boolean;
hideTooltip?: boolean;

or

Suggested change
disableTooltipInteraction?: boolean;
hideTooltip?: boolean;

or simply the same as the internal value, which would be clearer imo, though we would have to treat undefined as true

Suggested change
disableTooltipInteraction?: boolean;
triggerTooltip?: boolean;

Copy link
Member Author

Choose a reason for hiding this comment

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

What about ignoreTooltip?

Copy link
Member

Choose a reason for hiding this comment

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

Better than disableTooltipInteraction but I'm not sure which one is better suited 😆

Copy link
Member Author

Choose a reason for hiding this comment

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

The issue with hideTooltip is that it exist also in the series config, but the behavior is not exactly the same, so it might create some confusion

Copy link
Member

Choose a reason for hiding this comment

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

What if we invert it and call it something like showInTooltip or displayInTooltip where the default is true?

Alternatively, we could use hideFromTootip or hideInTooltip.

@JCQuintas
Copy link
Member

There seems to be some styling inconsistency in the tooltip. Should we always align the series to the left and values to the right?

Screenshot 2025-04-01 at 11 21 58

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@github-actions github-actions bot removed the PR: out-of-date The pull request has merge conflicts and can't be merged label Apr 1, 2025
@JCQuintas
Copy link
Member

The alignment issue is still happening.

It probably needs to fix the column widths to their min-content values

Screenshot 2025-04-01 at 15 58 31

@alexfauquette
Copy link
Member Author

It probably needs to fix the column widths to their min-content values

Not sure it's feasible. With a table layout it's quite hard to manipulate cells width when their is too much space available

image

An for most of the axis tooltip the current behavior looks good

image

Comment on lines 40 to 44
<ChartsTooltipCell
className={clsx(classes.markCell, classes.cell)}
component="td"
aria-hidden="true"
>
Copy link
Member

@JCQuintas JCQuintas Apr 1, 2025

Choose a reason for hiding this comment

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

We could skip this entire column, which should allow us a consistent margin style across content.

This is aria-hidden anyways, useless for tabular data.

If we remove it altogether and add the contents to the labelCell

<ChartsTooltipCell className={clsx(classes.labelCell, classes.cell)} component="th">
  <ChartsLabelMark type={markType} color={color} className={classes.mark} />{label}
</ChartsTooltipCell>

Then we would just need to update some margins and styles and everything should look as expected

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 had to add a wrapper for the tooltip mark to keep series label aligned when shapes are different, because the square has width: 13 but line has width: 16

So to simplify I dedicated 20px + theme.spacing(1.5) for the mark

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
{
useESModules,
// any package needs to declare 7.25.0 as a runtime dependency. default is ^7.0.0
version: babelRuntimeVersion || '^7.25.0',
Copy link
Member

Choose a reason for hiding this comment

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

I'd probably just throw if it can't find the runtime version

Copy link
Member

@Janpot Janpot left a comment

Choose a reason for hiding this comment

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

Looks good, I'd just error out instead of defaulting to a fixed versiona s that would likely silently break things.

@alexfauquette alexfauquette merged commit b3381ac into mui:master Apr 3, 2025
22 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
breaking change component: charts This is the name of the generic UI component, not the React module! enhancement This is not a bug, nor a new feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants