Hi rimlesskid,
You can create a function to format the number to what you want. This is the code snippet:
private string GetNumberString(double number)
{
if (number > 0)
return "+" + number;
else
return number.ToString();
}
Regards,
Aland Li
Please mark the replies as answers if they help and unmark if they don't. This can be beneficial to other community members reading the thread.