how do i save three charts in single image file (i.e. jpeg)
Posted: Wed May 16, 2007 8:54 am
i have three charts in vb and what to same in single image file or export to image file how can i do this using teechart functionality
Steema Software - Customer Support Forums
https://594668.gxwh.asia/support/
Code: Select all
Private Sub Command1_Click()
TChart1.Draw Picture1.hDC, 0, 0, Picture1.Width / Screen.TwipsPerPixelX, _
(Picture1.Height / Screen.TwipsPerPixelY) / 2
TChart2.Draw Picture1.hDC, 0, (Picture1.Height / Screen.TwipsPerPixelY _
) / 2, Picture1.Width / Screen.TwipsPerPixelX, _
Picture1.Height / Screen.TwipsPerPixelY
End Sub