File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -104,12 +104,12 @@ class Chart extends Component {
104
104
} ) ;
105
105
106
106
node . append ( 'circle' )
107
- . attr ( 'r' , 10 )
107
+ . attr ( 'r' , 5 )
108
108
. on ( 'mouseover' , function ( d ) {
109
109
d3 . select ( this )
110
110
. transition ( 100 )
111
111
. duration ( 20 )
112
- . attr ( 'r' , 20 ) ;
112
+ . attr ( 'r' , 10 ) ;
113
113
114
114
tooltipDiv . transition ( )
115
115
. duration ( 50 )
@@ -124,7 +124,7 @@ class Chart extends Component {
124
124
d3 . select ( this )
125
125
. transition ( )
126
126
. duration ( 300 )
127
- . attr ( 'r' , 12 ) ;
127
+ . attr ( 'r' , 5 ) ;
128
128
129
129
tooltipDiv . transition ( )
130
130
. duration ( 400 )
Original file line number Diff line number Diff line change 40
40
fill : none;
41
41
stroke : # 3853ea ;
42
42
stroke-opacity : 0.4 ;
43
- stroke-width : 5 px ;
43
+ stroke-width : 3 px ;
44
44
}
45
45
46
46
div .tooltip {
You can’t perform that action at this time.
0 commit comments