This commit is contained in:
Princiya 2017-08-12 15:37:24 +02:00 коммит произвёл Jonathan Kingston
Родитель b56d5ec789
Коммит 8b76aadf9b
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -181,16 +181,16 @@ const viz = {
},
getTooltipPosition(x, y) {
const tooltipArrowHeight = 20;
const { right: canvasRight } = this.canvas.getBoundingClientRect();
const {
height: tooltipHeight,
width: tooltipWidth
} = this.tooltip.getBoundingClientRect();
const top = y - tooltipHeight - this.circleRadius - 20;
const top = y - tooltipHeight - this.circleRadius - tooltipArrowHeight;
let left;
if ((x + tooltipWidth) >= canvasRight
|| (x + (tooltipWidth/2)) >= canvasRight) {
if (x + tooltipWidth >= canvasRight) {
left = x - tooltipWidth;
} else {
left = x - (tooltipWidth/2);