Skip to content

Commit 937d2f7

Browse files
committed
pushing final changes
1 parent 7b80e50 commit 937d2f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/app/components/Chart.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ class Chart extends Component {
104104
});
105105

106106
node.append('circle')
107-
.attr('r', 10)
107+
.attr('r', 5)
108108
.on('mouseover', function (d) {
109109
d3.select(this)
110110
.transition(100)
111111
.duration(20)
112-
.attr('r', 20);
112+
.attr('r', 10);
113113

114114
tooltipDiv.transition()
115115
.duration(50)
@@ -124,7 +124,7 @@ class Chart extends Component {
124124
d3.select(this)
125125
.transition()
126126
.duration(300)
127-
.attr('r', 12);
127+
.attr('r', 5);
128128

129129
tooltipDiv.transition()
130130
.duration(400)

src/app/styles/components/d3graph.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ body {
4040
fill: none;
4141
stroke: #3853ea;
4242
stroke-opacity: 0.4;
43-
stroke-width: 5px;
43+
stroke-width: 3px;
4444
}
4545

4646
div.tooltip {

0 commit comments

Comments
 (0)