This is the code I'm using to change the row labels:
lstXAxisSrsLbls.Items.CopyTo(strArray, 0);
ctrlUltraChart.Data.SetRowLabels(strArray);
lstXAxisSrsLbls.DataSource = strArray;
lstXAxisSrsLbls.SelectedIndex = intSelectedItem;
is there anyway to reset the values back to the default values or clear out the changes I made so that I can add another column or row?
this should work:chart.Data.SetRowLabels(null);