11-21-2005 03:40 PM
11-23-2005 11:27 AM
11-23-2005 11:48 AM
11-23-2005 11:55 AM
Tyler,
I will try again. I modified you Command1_Click sub as follows:
Private Sub Command1_Click()
CWGraph1.Plots(1).PlotY plot1, 0 'Plot plot1 starting at 0
CWGraph1.Plots(2).PlotY plot2, 30 'Plot plot2 starting at 30
CWGraph1.Plots(3).PlotY plot3, 40 'Plot plot3 starting at 40
End Sub
This reflects my sample data:
Plot#1 will have 100 y-axis values plotted between 0 an 10 on the x-axis scale.
Plot#2 will have 30 y-axis values plotted between 3 and 5 on the x-axis scale.
Plot#3 will have 60 y-axis values plotted between 4 and 8 on the x-axis scale.
First in this example I need the X axis to Read 0 to 10, not 0 to 100. In other words I would like to specify what the X-Axis scale reads.
Secondly, The 2 and third plots start in the correct place on the x-axis but they do not end up in the correct place.
Pleae read this agian and let me know if it is possible
Plot#1 will have 100 y-axis values plotted between 0 an 10 on the x-axis scale.
Plot#2 will have 30 y-axis values plotted between 3 and 5 on the x-axis scale.
Plot#3 will have 60 y-axis values plotted between 4 and 8 on the x-axis scale.
Thank you,
Bob Hiller
11-28-2005 01:38 PM