See picture, how can i remove this??
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[]{""});
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?
Hello Scott,
I am following up to see if you have any further questions with removing labels on Y axis in the chart?
Update me if you need any further assistance.
Thanks,
Bhadresh
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.