// .attr("r", 30)
// .attr("cx", d => scale.x(d.x))
// .attr("cy", d => scale.y(d.y))
// .on("mouseenter", onMouseEnter)
// .on("mouseleave", onMouseLeave);
// return html`
// <figure style="max-width: 100%;" role="group">
// <div id="chart-wrapper" class="wrapper">
// ${tooltip.node()}
// ${svg.node()}
// </div>
// </figure>
// </div>`;
// stylesTooltip = html`
// <style>
// #chart-wrapper {
// position: relative;
// }
// text {
// font-family: "Source Sans Pro", "Noto Sans", sans-serif;
// }
// .tooltip {
// background-color: #fff;
// box-shadow: 0 6px 8px rgba(60, 57, 65, .3), 0 1px 1px rgba(60, 57, 65, .1);
// font-family: "Source Sans Pro", "Noto Sans", sans-serif;
// left: 0;
// opacity: 0;
// padding: 0.5em 1em;
// pointer-events: none;
// border-radius: 5px;
// position: absolute;
// text-align: center;
// top: -12px;
// transition: opacity 0.2s linear, transform 0.0s ease-in-out;
// z-index: 1;
// }
// .tooltip:before {
// background-color: #fff;
// border-left-color: transparent;
// border-top-color: transparent;
// bottom: 0;
// content: '';
// height: 12px;
// left: 50%;
// position: absolute;
// transform-origin: center center;
// transform: translate(-50%, 50%) rotate(45deg);
// width: 12px;
// z-index: 1;
// }
// .tooltip-name {
// margin-bottom: 0.2em;
// font-size: 1em;
// line-height: 1.4;
// font-weight: 700;
// }
// .tooltip-value {
// margin-bottom: 0.2em;
// font-size: 0.8em;
// line-height: 1.4;
// font-weight: 400;
// }
// .tooltip-date {
// margin-bottom: 0.2em;
// font-size: 0.8em;
// line-height: 1.4;
// font-weight: 400;
// }
// </style>
// `