domurtag Report post Posted September 8, 2014 (edited) Hi, I use the feedData() function to add data to a RealTimeLine JavaScript chart, e.g. var fusionFormat = "&label=" + data.label + "&value=" + data.value + "&toolText=before,after"; this.chart.feedData(fusionFormat); However, if the tooltip text contains a comma, only the text before the comma is displayed, so in the example about the tooltip displays only "before". Is it possible to include commas in tooltips that are added via feedData() function? Thanks in advance. Edited September 8, 2014 by domurtag Share this post Link to post Share on other sites
domurtag Report post Posted September 8, 2014 I managed to resolve this by URL-encoding the tooltip, i.e. var fusionFormat = "&label=" + data.label + "&value=" + data.value + "&toolText=" + encodeURIComponent(data.toolText); this.chart.feedData(fusionFormat); Share this post Link to post Share on other sites