Skip to content

Commit

Permalink
Cleanup w3c#504
Browse files Browse the repository at this point in the history
  • Loading branch information
almossawi committed Oct 20, 2015
1 parent bbece16 commit 6a59c55
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/js/charts/bar.js
Expand Up @@ -249,7 +249,7 @@
.attr('class', 'mg-active-datapoint')
.attr('xml:space', 'preserve')
.attr('x', args.width - args.right)
.attr('y', args.top * 0.9)
.attr('y', args.top * 0.75)
.attr('dy', '.35em')
.attr('text-anchor', 'end');

Expand Down
2 changes: 1 addition & 1 deletion src/js/charts/histogram.js
Expand Up @@ -80,7 +80,7 @@
.attr('class', 'mg-active-datapoint')
.attr('xml:space', 'preserve')
.attr('x', args.width - args.right)
.attr('y', args.top * 0.9)
.attr('y', args.top * 0.75)
.attr('text-anchor', 'end');

var g = svg.append('g')
Expand Down
2 changes: 1 addition & 1 deletion src/js/charts/line.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/js/charts/point.js
Expand Up @@ -78,7 +78,7 @@
.attr('class', 'mg-active-datapoint')
.attr('xml:space', 'preserve')
.attr('x', args.width - args.right)
.attr('y', args.top * 0.9)
.attr('y', args.top * 0.75)
.attr('text-anchor', 'end');

//add rollover paths
Expand Down
2 changes: 1 addition & 1 deletion src/js/common/markers.js
Expand Up @@ -37,7 +37,7 @@ function markers(args) {
return d.textclass ? 'mg-marker-text ' + d.textclass : 'mg-marker-text';
})
.attr('x', xPosition)
.attr('y', args.top - 8)
.attr('y', args.top * 0.9)
.attr('text-anchor', 'middle')
.text(function(d) {
return d.label;
Expand Down

0 comments on commit 6a59c55

Please sign in to comment.