Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
7e201eaa
Unverified
Commit
7e201eaa
authored
3 years ago
by
Alexander Polyankin
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Fix combined tooltip for charts (#17946)" (#18227)
parent
295f40d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/src/metabase/visualizations/lib/apply_tooltips.js
+5
-11
5 additions, 11 deletions
frontend/src/metabase/visualizations/lib/apply_tooltips.js
frontend/test/metabase/scenarios/visualizations/line_chart.cy.spec.js
+2
-2
2 additions, 2 deletions
...t/metabase/scenarios/visualizations/line_chart.cy.spec.js
with
7 additions
and
13 deletions
frontend/src/metabase/visualizations/lib/apply_tooltips.js
+
5
−
11
View file @
7e201eaa
...
...
@@ -32,17 +32,11 @@ export function getClickHoverObject(
const
isBar
=
classList
.
includes
(
"
bar
"
);
const
isSingleSeriesBar
=
isBar
&&
!
isMultiseries
;
function
getColumnDisplayName
(
col
,
colIndex
,
card
)
{
// `visualization_settings.series_settings` use `card.name` and
// not `column.name` for renamed series when the `seriesIndex > 0`;
// check for `columnIndex === 1` because only the first metric column
// should be renamed by this setting
const
colKey
=
seriesIndex
>
0
&&
colIndex
===
1
?
card
.
name
:
col
.
name
;
const
colTitle
=
getIn
(
settings
,
[
"
series_settings
"
,
colKey
,
"
title
"
]);
function
getColumnDisplayName
(
col
)
{
const
title
=
getIn
(
settings
,
[
"
series_settings
"
,
col
.
name
,
"
title
"
]);
// don't replace with series title for breakout multiseries since the series title is shown in the breakout value
if
(
!
isBreakoutMultiseries
&&
colT
itle
)
{
return
colT
itle
;
if
(
!
isBreakoutMultiseries
&&
t
itle
)
{
return
t
itle
;
}
return
getFriendlyName
(
col
);
...
...
@@ -120,7 +114,7 @@ export function getClickHoverObject(
};
}
return
{
key
:
getColumnDisplayName
(
col
,
i
,
card
),
key
:
getColumnDisplayName
(
col
),
value
:
formatNull
(
aggregatedRow
[
i
]),
col
:
col
,
};
...
...
This diff is collapsed.
Click to expand it.
frontend/test/metabase/scenarios/visualizations/line_chart.cy.spec.js
+
2
−
2
View file @
7e201eaa
...
...
@@ -197,7 +197,7 @@ describe("scenarios > visualizations > line chart", () => {
.
should
(
"
have.length
"
,
2
);
});
describe
(
"
tooltip of combined dashboard cards (multi-series) should show the correct column title (metabase#16249
"
,
()
=>
{
describe
.
skip
(
"
tooltip of combined dashboard cards (multi-series) should show the correct column title (metabase#16249
"
,
()
=>
{
const
RENAMED_FIRST_SERIES
=
"
Foo
"
;
const
RENAMED_SECOND_SERIES
=
"
Bar
"
;
...
...
@@ -437,5 +437,5 @@ function showTooltipForFirstCircleInSeries(series_index) {
.
as
(
"
firstSeries
"
)
.
find
(
"
circle
"
)
.
first
()
.
trigger
(
"
mousemove
"
,
{
force
:
true
}
);
.
realHover
(
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment