Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
How to Rename Col Labels
posted

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

  • 10880
    posted

    I believe that method takes an array of strings.  So it would be like:

    UltraChart1.Data.SetColumnLabels(new string[ ] {"string1","string2"});