Skip to content

Commit 6596121

Browse files
committed
tooltip functionality complete
1 parent 535846e commit 6596121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/components/Chart.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class Chart extends Component {
118118
node
119119
.on('mouseover', function (d) {
120120
// without JSON.stringify, data will display as object Object
121-
console.log('d.data --> ', JSON.stringify(d.data))
121+
// console.log('d.data --> ', JSON.stringify(d.data))
122122
tip.show(JSON.stringify(d.data.stateSnapshot), this)
123123
})
124124
.on('mouseout', tip.hide)

0 commit comments

Comments
 (0)