-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Conversation
Thanks for adding a type label to the PR! 👍 |
Deploy preview: https://deploy-preview-17058--material-ui-x.netlify.app/ Updated pages: |
CodSpeed Performance ReportMerging #17058 will not alter performanceComparing Summary
|
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 |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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
...rnals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.ts
Show resolved
Hide resolved
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
This pull request has conflicts, please resolve those before we can evaluate the pull request. |
packages/x-charts/src/internals/plugins/models/seriesConfig/tooltipGetter.types.ts
Outdated
Show resolved
Hide resolved
packages/x-charts/src/models/axis.ts
Outdated
/** | ||
* If `true`, the axis will be ignored by the tooltip with `trigger='axis'`. | ||
*/ | ||
disableTooltipInteraction?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
disableTooltipInteraction?: boolean; | |
hideTooltip?: boolean; |
or
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
disableTooltipInteraction?: boolean; | |
triggerTooltip?: boolean; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about ignoreTooltip
?
There was a problem hiding this comment.
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 😆
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
.
<ChartsTooltipCell | ||
className={clsx(classes.markCell, classes.cell)} | ||
component="td" | ||
aria-hidden="true" | ||
> |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
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
d04e436
to
336ec8d
Compare
{ | ||
useESModules, | ||
// any package needs to declare 7.25.0 as a runtime dependency. default is ^7.0.0 | ||
version: babelRuntimeVersion || '^7.25.0', |
There was a problem hiding this comment.
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
There was a problem hiding this 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.
This is the followup of #17039
The issue
The current behavior of Tooltip with
trigger="axis"
is handcrafted. The main idea wasThis does not scale anymore with:
Proposed aproach
triggerTooltip
paprameter.seriesConfig
. For now bar and line set heirs x/y axies as triggering the tooltip according to their directiontriggerTooltip=true
and test if the current point position corresponds to a value.Needed refinement before merging
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 oftd
.The item tooltip content is a simple
p
component with aspan
for series label and item value.