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
36a936c6
Commit
36a936c6
authored
9 years ago
by
Allen Gilliland
Browse files
Options
Downloads
Plain Diff
Merge pull request #796 from metabase/tooltip_rounding
Don't round values in chart tooltips
parents
7fa93c50
e5b0370a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
resources/frontend_client/app/card/card.charting.js
+15
-4
15 additions, 4 deletions
resources/frontend_client/app/card/card.charting.js
with
15 additions
and
4 deletions
resources/frontend_client/app/card/card.charting.js
+
15
−
4
View file @
36a936c6
...
...
@@ -44,6 +44,19 @@ var MIN_PIXELS_PER_TICK = {
y
:
50
};
var
precisionNumberFormatter
=
d3
.
format
(
"
.2r
"
);
var
fixedNumberFormatter
=
d3
.
format
(
"
,.f
"
);
function
formatNumber
(
number
)
{
if
(
number
>
-
1
&&
number
<
1
)
{
// numbers between 1 and -1 round to 2 significant digits with extra 0s stripped off
return
precisionNumberFormatter
(
number
).
replace
(
/
\.?
0+$/
,
""
);
}
else
{
// anything else rounds to at most 2 decimal points
return
fixedNumberFormatter
(
d3
.
round
(
number
,
2
));
}
}
/// return pair of [min, max] values from items in array DATA, using VALUEACCESSOR to retrieve values for each item
/// VALUEACCESSOR may be an accessor function like fn(ITEM) or can be a string/integer key/index into ITEM which will
/// use a function like fn(item) { return item(KEY); }
...
...
@@ -368,17 +381,15 @@ function applyChartTooltips(dcjsChart, card, cols) {
// We should only ever have one tooltip on screen, right?
Array
.
prototype
.
forEach
.
call
(
document
.
querySelectorAll
(
'
.ChartTooltip
'
),
(
t
)
=>
t
.
parentNode
.
removeChild
(
t
));
var
valueFormatter
=
d3
.
format
(
'
,.0f
'
);
var
tip
=
d3
.
tip
()
.
attr
(
'
class
'
,
'
ChartTooltip
'
)
.
direction
(
'
n
'
)
.
offset
([
-
10
,
0
])
.
html
(
function
(
d
)
{
var
values
=
valueF
ormat
t
er
(
d
.
data
.
value
);
var
values
=
f
ormat
Numb
er
(
d
.
data
.
value
);
if
(
card
.
display
===
'
pie
'
)
{
// TODO: this is not the ideal way to calculate the percentage, but it works for now
values
+=
"
(
"
+
valueF
ormat
t
er
((
d
.
endAngle
-
d
.
startAngle
)
/
Math
.
PI
*
50
)
+
'
%)
'
values
+=
"
(
"
+
f
ormat
Numb
er
((
d
.
endAngle
-
d
.
startAngle
)
/
Math
.
PI
*
50
)
+
'
%)
'
}
return
'
<div><span class="ChartTooltip-name">
'
+
d
.
data
.
key
+
'
</span></div>
'
+
'
<div><span class="ChartTooltip-value">
'
+
values
+
'
</span></div>
'
;
...
...
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