Hi
I have a simple column chart (ultrachart 3.5) that I bind to a recordset in the page load event. It shows the numeric data values above the columns. But they're displayed with a single decimal point (e.g. 15.0). I want to display them as integer values with no decimal points.
I can't figure out where to set this. I've tried setting the ItemFormat and ItemFormatString properties of the X Axis labels, but nothing changes The decimal point and trailing 0 are still there. (For example, I've tried <ITEM_LABEL:N0>, as well as <DATA_VALUE:N0)). Which property should I use to format the numeric labels that appear over the columns??
Can anyone help?
Hi,
Try using a ChartTextAppearance with the proper ItemFormatString value. Here is a help article, describing it:http://help.infragistics.com/NetAdvantage/ASPNET/2010.1/CLR3.5/?page=Chart_Apply_Chart_Text_Labels.html
Ok, that works. But then how do I get rid of the labels that are already automatically appearing above the columns, so they don't collide with the new ones I'm adding with the ChartTextAppearance. I don't see what setting to use to hide them.
Thanks very much.