Consider you have an array of charts, filled with one series of x,y points and you want to clone a specific one in another large chart (in another form) to perform a sort of magnification operation for selected member of that array.
What is the proper approach to achieve such thing?
How about a for loop to add points from here to another?
Codes are wrong. Only for understandingCode:For i=0 to Me.Chart1.Series(0).Points.All then Form2.Chart1.Series(0).add = Me.Chart1.Series(0).Points(i) Next
Or is there a property/method thing to shortcut looping?
Codes are wrong. Only for understandingCode:Form2.Chart1 = Me.Chart1
Don't know either ways. I just assumed they're possible ways.
Thanks in advance/.




Reply With Quote
