Increase y distance from mouse cursor to tooltip
This commit is contained in:
parent
dce956d357
commit
d4d4a62ee2
|
@ -418,7 +418,7 @@ function createLineGraph(containerId, raceData){
|
||||||
.attr("width", textMaxLength + "em")
|
.attr("width", textMaxLength + "em")
|
||||||
.attr("height", (textArr.length + 1) + "em")
|
.attr("height", (textArr.length + 1) + "em")
|
||||||
.attr("x", function() { if(xRatio < 0.70) return d3.mouse(this)[0] + 10; else return d3.mouse(this)[0] - 130; })
|
.attr("x", function() { if(xRatio < 0.70) return d3.mouse(this)[0] + 10; else return d3.mouse(this)[0] - 130; })
|
||||||
.attr("y", function() { return d3.mouse(this)[1] + 10; });
|
.attr("y", function() { return d3.mouse(this)[1] + 25; });
|
||||||
|
|
||||||
//Necessary to add Text for each Line
|
//Necessary to add Text for each Line
|
||||||
textArr.forEach((text, textIndex) =>{
|
textArr.forEach((text, textIndex) =>{
|
||||||
|
@ -426,7 +426,7 @@ function createLineGraph(containerId, raceData){
|
||||||
tooltipGroup.append("text")
|
tooltipGroup.append("text")
|
||||||
.attr("dy", (textIndex + 1) + "em")
|
.attr("dy", (textIndex + 1) + "em")
|
||||||
.attr("x", function() { if(xRatio < 0.70) return d3.mouse(this)[0] + 15; else return d3.mouse(this)[0] - 125; })
|
.attr("x", function() { if(xRatio < 0.70) return d3.mouse(this)[0] + 15; else return d3.mouse(this)[0] - 125; })
|
||||||
.attr("y", function() { return d3.mouse(this)[1] + 15; })
|
.attr("y", function() { return d3.mouse(this)[1] + 30; })
|
||||||
.text(function() {
|
.text(function() {
|
||||||
return text; // Value of the text
|
return text; // Value of the text
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue