Data Points Missing.Please Help

TeeChart for ActiveX, COM and ASP
Post Reply
Teechart Activex Question
Newbie
Newbie
Posts: 19
Joined: Fri Nov 15, 2002 12:00 am
Contact:

Data Points Missing.Please Help

Post by Teechart Activex Question » Thu Feb 12, 2004 6:41 pm

I have a line graph with following code
Chart.AddSeries scLine
Chart.Series(0).Color = VbColor(16)
Chart.Series(0).Title = "Schedule Performance Index"
Chart.Series(0).Add 0 ,"1/10/2004", VbColor(16)
Chart.Series(0).Add .75 "2/5/2004", VbColor(16)
Chart.Series(0).Add 1 ,"2/10/2004", VbColor(16)


My data point can be 0.0 0.1,0.2 .. up to 1.

When the graph is drawn i have only 0 and 1 on my y axis.i want the
point .76 also on the y axis.

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Fri Feb 13, 2004 9:29 am

Hi,

you can be changed if you assign an axis increment, like :
Chart.Axis.Left.Increment = 0.05

Post Reply