I have a multi-layered chart that I am attempting to turn off or hide the series labels on the X-axis of my chart (see attached image). I've been attempting to hide them by changing their color to white:
this.UltraChart4.Axis.X.Labels.SeriesLabels.Visible = false; this.UltraChart4.Axis.X.Labels.SeriesLabels.FontColor = Color.White;
So far, no luck. Any ideas on how I should go about this? I'd like to keep the vertical dates, but get rid of the horizontal series labels that are all compressed together and make no sense.
If you are using composite chart, try looking at:
http://forums.infragistics.com/forums/p/4074/20187.aspx#20187
I figured out what my problem was. I had the rows and columns swapped in my dataset. I realized that I should be working w/ the Label not the Series Label. I used:
xAxisColumn.Labels.Visible = false;
And it cleaned things right up. Sorry for the confusion.