Skip to content

Commit 0ca2cea

Browse files
rueckstiesskangas
authored andcommitted
added percentage to date's weekday and hour tooltips.
1 parent 99c3e99 commit 0ca2cea

File tree

1 file changed

+2
-2
lines changed
  • scout-ui/src/minicharts/d3fns

1 file changed

+2
-2
lines changed

scout-ui/src/minicharts/d3fns/date.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ module.exports = function(opts) {
5858
return {
5959
label: weekdayLabels[i],
6060
value: d.length,
61-
tooltip: weekdayLabels[i]
61+
// tooltip: weekdayLabels[i]
6262
};
6363
})
6464
.value();
@@ -74,7 +74,7 @@ module.exports = function(opts) {
7474
return {
7575
label: hourLabels[i] + ':00',
7676
value: d.length,
77-
tooltip: hourLabels[i] + ':00'
77+
// tooltip: hourLabels[i] + ':00'
7878
};
7979
})
8080
.value();

0 commit comments

Comments
 (0)