htmltooltip = (d) =>
`<div class="tooltip" style = "
position: absolute;
bottom: 150%;
left: 50%;
margin-bottom: 5px;
margin-left: -80px;
padding: 7px;
width: 160px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #000;
font-family : sans-serif;
background-color: hsla(0, 0%, 20%, 0.9);
color: #fff;
content: attr(data-tooltip);
text-align: center;
font-size: 13px;
line-height: 1.2;">
<span class="name"><b>${d.name}</b></span><br/>
<span class="var">${d.var}</span>
</div>`