Graph: Fixed no value in graph tooltip (#21246)

This commit is contained in:
Torkel Ödegaard
2019-12-24 08:25:17 +01:00
committed by GitHub
parent af2cd77655
commit 8740c66218

View File

@@ -257,7 +257,7 @@ export default function GraphTooltip(this: any, elem: any, dashboard: any, scope
series = seriesList[hoverInfo.index];
value = series.formatValue(sanitize(hoverInfo.value));
value = series.formatValue(hoverInfo.value);
const color = sanitize(hoverInfo.color);
const label = sanitize(hoverInfo.label);