After several trials, I got the MSChart I wanted and was able to save to a BMP file using:
Code:
MSChart1.EditCopy
Picture1.Picture = Clipboard.GetData(vbCFBitmap)
SavePicture Picture1.Picture, "C:\temp\MS_Chart.bmp"
The problem was the captured Legend resulted as default text "C1" and "C2" vs the desired generated values of "PI" and "Goal" using:
Code:
.Plot.SeriesCollection(1).LegendText = " PI   "
.Plot.SeriesCollection(2).LegendText = " Goal "
Displaying the .BMP file shows "C1" and "C2" in the Legend.

What did I miss or should have done differnt?

Thanks