User (Legacy) Posted March 23, 2005 Report Share Posted March 23, 2005 I'd like to resize ChartFX ActiveX Control on the FormView whenever I change the size of FormView. Thanks in advance. void CBufferUsageFormView::OnSize(UINT nType, int cx, int cy) { CFormView::OnSize(nType, cx, cy); ????? } Quote Link to comment Share on other sites More sharing options...
Software FX Posted March 24, 2005 Report Share Posted March 24, 2005 If you followed the documentation and samples, you should have a member variable of type CWnd that points to the chart control. Simply use SetWindowPos or any other CWnd method to resize the chart window. In other words, treat the chart as any other control window. -- FP Software FX Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.