Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
115
X label not displaying
posted

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

Parents
No Data
Reply
  • 17605
    posted

    Try using:

    this.ultraChart1.Axis.X.Labels.Visible = false;

    this.ultraChart1.Axis.X.Labels.SeriesLabels.Visible = true;

Children
No Data