Home › Forums › Chart Support › how to add tooltip color › Reply To: how to add tooltip color
contentFormatter: function (e) { var content = ” “; for (var i = 0; i < e.entries.length; i++) { content += e.entries[i].dataSeries.name + ” ” + “<strong style=’\”‘color: red;’\”‘>” + e.entries[i].dataPoint.y + ““; content += “<br/>”; } return content; }