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"))
"Java", System.Type.GetType("System.Int32"))
"NET", System.Type.GetType("System.Int32"))
dt.Rows.Add(
New Object() {"Week 1", 50, 75, 79})
UltraChart1.DataSource = dt
UltraChart1.DataBind()
or UltraChart1.Data.ZeroAligned = true
UltraChart1.Axis.Y.RangeType = A
UltraChart1.Axis.Y.RangeMin=0;
UltraChart1.Axis.Y.RangeMax=100;//whatever youthink is the max value