We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf40cf commit b0ff9beCopy full SHA for b0ff9be
site/static/index.html
@@ -102,7 +102,10 @@
102
tooltip.style.top = (tooltipTopOffset + top + shiftX) + "px";
103
tooltip.style.left = (tooltipLeftOffset + lft + shiftY) + "px";
104
105
- tooltip.style.borderColor = isInterpolated(dataIdx) ? interpolatedColor : "#000000";
+ tooltip.style.borderColor = isInterpolated(dataIdx) ?
106
+ interpolatedColor :
107
+ u.series[seriesIdx].stroke;
108
+
109
let trailer = "";
110
if (absoluteMode) {
111
let pctSinceStart = (((u.data[seriesIdx][dataIdx] - u.data[seriesIdx][0]) / u.data[seriesIdx][0]) * 100).toFixed(2);
0 commit comments