Hi George,
We have analyzed your query. We suggest rendering the
tooltip's Y value with a separator by utilizing the TooltipRender event to
modify the Y value accordingly. We have attached a sample and screenshot for
your reference. Please check with the below code snippet.
|
<ChartEvents TooltipRender="TooltipEvent"></ChartEvents>
|
|
public void
TooltipEvent(TooltipRenderEventArgs args)
{
string[] split =
args.Text.Split("<b>");
string[] split2 =
split[1].Split("</b>");
args.Text = split[0] + "<b>" + double.Parse(split2[0], culture).ToString("N0", culture) + "</b>";
}
|
Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/ThousandSeparator-512875282.zip
Screenshot:

Kindly revert us if you have any concerns.
Regards,
Gopalakrishnan Veeraraghavan