I still can't get how you can change the X label. I have been working on this for some time and am thinking this should not be so difficult. I am sure it is very simple. The lable I am wanting to change is on a bar chart pulling data from SQL server 2005. All I am wanting to do is to change the X lable to Facility Average, National Average for the first set of series, then Facility Average, National Average..and so forth. Then I would like to set the series to Q#1, Q#2, Q#3 and contnued for each series. I am developing this in Visual Studio 2005. I am sending code and a screen shot in hopes that this will help. Thanks.
Could you attach and the screen shot, please?
Sorry.
Try using:
this.ultraChart1.Data.SetRowLabels(new string[ { "Facility Average Q1", "National Average Q1", "Facility Average Q2", "National Average Q2", ... });
Thank you very much. That is what I needed to make it happen.
You need to put this in the .vb page:
Inherits System.Web.UI.Page
Dim labels() As String = {"label 1", "label 2"} ' add all your axis labels here
End Sub
End Class
Where might this go? Does it go in the source .aspx behind the design or in the .vb page? I am sorry, I really don't get this.