Commit 8740c662 by Torkel Ödegaard Committed by GitHub

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

parent af2cd776
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment