i need to rename the column labels from a SQL database. the SQL database columns are month1 month2... i need to have the columns in the chart as May, April... is this possible
should i use 'UltraChart1.Data.SetColumnLabels' amd if so how is this done. i cannot find any Help on this.
TIA
Tom
I believe that method takes an array of strings. So it would be like:
UltraChart1.Data.SetColumnLabels(new string[ ] {"string1","string2"});