Hello

I would like to copy a chart to another form. I have a MainForm which displays several charts. However I have another form which I would like to copy some of the graphs from MainForm to this new form (GraphCompare) so that the charts can be compared easily by the user. I am unsure on how to do the actual copying part.

so far I have this:
Code:
        Dim Chart56 As New Chart
        Chart56 = Chart1
        GraphCompare.Panel1.Controls.Add(Chart56)
        GraphCompare.Show()
Cheers
TKP