I'm using the barchart to chart financial figures, and sometimes percentages. But I cant work out how to format the numbers - so $5,602.20 is displayed as just 5602.20.
How do I change this? How do I change the formatting of the numbers on the chart?
Hello
Maybe one possible approach could be if you are using ItemFormatString property with value "$" of your BarChart.ChartText collection
Let me know if you have any questions.
Regards
Thanks - that did the trick.
In case anyone stumbles across this, the exact property I changed was:
ultraChart1.ColumnChart.ChartText[0].ItemFormatString = "$<DATA_VALUE:#,#00.00>";