Page 1 of 1

Data Points Missing.Please Help

Posted: Thu Feb 12, 2004 6:41 pm
by 6925002
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.

Posted: Fri Feb 13, 2004 9:29 am
by Pep
Hi,

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