How can I set the Custom Image Position (Boolean variable) to True ? What property of CTChart should I set? I'm using Visual C++? I also need to set the Custom Position (left and Top) via the code.
Thanks.
Back Image Custom Position
Hi nbp,
Have you tried doing something like this?
Have you tried doing something like this?
Code: Select all
m_Chart1.GetPanel().GetBackImage().SetMode(3);
m_Chart1.GetPanel().GetBackImage().SetLeft(100);
m_Chart1.GetPanel().GetBackImage().SetTop(100);
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi nbp,
Yes, these properties are available from TeeChart v8. If you want to load an image in v7 I think you'll have to use TChart1.Canvas.Draw method at OnBeforeDrawChart event.
Yes, these properties are available from TeeChart v8. If you want to load an image in v7 I think you'll have to use TChart1.Canvas.Draw method at OnBeforeDrawChart event.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |