Data Points Missing.Please Help
Posted: 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.
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.