Hi Josh,
Thanks for using Syncfusion product.
We have analyzed this. This is not possible to achieve with in chart sample code.
Because the tooltip text is got on hovering it on a point. At that time legend item is already rendered. So if we assign tooltip text to legend text and call redraw() method, No effect will be taken in DOM.
The below code snippet shows a way to achieve this.
[JS]
function track(sender){ // method is called on tooltipInitialize
var id = this.svgObject.id; // to get id
var element = $("#" + id + "_Legend0").children()[1]; // to get the legend item element
element.textContent= sender.data.currentText; // changes the text
}
We have also made a sample to illustrate this. Find it form the below location.
line.zip
Please find the below screen shot of the attached sample.
Please let us know if you have any concern.
Thanks,
Jayavigneshwaran