I am pulling my hair out with this issue.
I am trying to create a simple column chart that has one x and one y axis.
My select SQL statement that populates the DataTable looks like this:
SELECT signupDate, count(*) FROM tblCustomer
The Y axis correctly shows the range of values. i.e. 0 through 100. However, the Y axis does not display the label which should be the signupDate. Instead, it just says 'column2'.
The signupDate is a datetime field.
I've attached a screen shot.
Please help!
Thanks,Jaime
Try using:
this.ultraChart1.Axis.X.Labels.SeriesLabels.Visible = true;