Skip to content

Commit

Permalink
Fix issue w3c#101
Browse files Browse the repository at this point in the history
  • Loading branch information
almossawi committed Jul 26, 2014
1 parent 2e5dd4f commit 87afe7b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/metrics-graphics.js
Expand Up @@ -30,6 +30,7 @@ function moz_chart() {
max_y: null,
min_x: null,
min_y: null,
point_size: 2.5, // the size of the dot that appears on a line on mouse-over
x_accessor: 'date',
xax_units: '',
x_label: '',
Expand Down Expand Up @@ -858,7 +859,7 @@ charts.line = function(args) {
.attr('cy', function() {
return args.scales.Y(d[args.y_accessor]);
})
.attr('r', 2.5)
.attr('r', args.point_size)
.style('opacity', 1);

//trigger mouseover on all rects for this date in .linked charts
Expand Down

0 comments on commit 87afe7b

Please sign in to comment.