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
475
Setting Ultrachart y axis to zero
posted

I have created an Ultrachart using the following code.

However the y axis is starting from the Minimum of the three numbers given below

as opposed to zero (0).

Can anyone help to how to set the yaxis to zero (o)?:

 

 

 

 

 

 

 

 

 

 

Dim

 

dt As New DataTable()

dt.Columns.Add(

"Week", System.Type.GetType("System.String"))

 

dt.Columns.Add(

"ActiveX", System.Type.GetType("System.Int32"))

dt.Columns.Add(

"Java", System.Type.GetType("System.Int32"))

dt.Columns.Add(

"NET", System.Type.GetType("System.Int32"))

dt.Rows.Add(

New Object() {"Week 1", 50, 75, 79})

UltraChart1.DataSource = dt

UltraChart1.DataBind()