diff --git a/module/execution/js/cfd.ui.js b/module/execution/js/cfd.ui.js
index 7c43b539a1..fba7372796 100644
--- a/module/execution/js/cfd.ui.js
+++ b/module/execution/js/cfd.ui.js
@@ -15,7 +15,7 @@ window.randTipInfo = function(params)
var tooltipString = [];
newParams = params.reverse();
newParams.forEach((p) => {
- const cont = p.marker + " " + p.seriesName + " => " + p.value + "
";
+ const cont = p.marker + " " + p.seriesName + ": " + p.value + "
";
tooltipString.push(cont);
});
return tooltipString.join("");