See picture, how can i remove this??
Hello Scott,
You can achieve above functionality by setting Y axis labels visible to false. The following line of code will make the labels on Y axis to invisible:
this.UltraChart1.Axis.Y.Labels.Visible = false;
Hope this helps.
Thanks,
Bhadresh
Actually, this code (UltraChart1.Axis.Y.Labels.Visible = false;) just hides the actual data labels, not the row identifiers. How do you remove the annoying ROW #1, ROW #2, etc?
That's probably because you're not using a Bar chart (row labels are on the y axis). Your chart has row labels on the x axis, so instead of setting label visibility on the y axis, you should be setting it on the x axis.
chart.Axis.X.Labels.SeriesLabels.Visible = false;
or this way:chart.Data.SetRowLabels(new string[]{""});