I need to create programatically multiple instances of a chart which I will use as a template. I want each graph zoomed and edited individually. The graphs should scroll so that I can see the whole set.
Could you provide an example in VB6 which I can follow in order to acheive this or something similar?
Thanks for your reply
Multiple graph instances programatically
Hi Yacu,
Yep, sorry, I've just corrected it. I'm investigating your issue right now and I'll answer you as soon as possible.
Yep, sorry, I've just corrected it. I'm investigating your issue right now and I'll answer you as soon as possible.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi Yacu,
You should be able to create a chart at runtime like this:
And then you should be able to create series or what you want, normally:
You should be able to create a chart at runtime like this:
Code: Select all
Dim chartObj As New TeeChart.TChart
Code: Select all
chartObj.AddSeries scHorizBar
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |