Is there a possibility to share the data in my internal data structures with a Series, so that my program internal data and the Series data are consistent? I see it is possible with a database or a file, but I want to use only memory.
Does Series copy the data or access it by reference?
Data source
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi deha,
To achieve that you should define an event for your recordset being updated and call series' CheckDataSource method there.
To achieve that you should define an event for your recordset being updated and call series' CheckDataSource method there.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi deha,
In that case you should manually iterate through your data structure and populate TeeChart series using Add/AddXY methods. Assigning a database datasource does the same internally.
In that case you should manually iterate through your data structure and populate TeeChart series using Add/AddXY methods. Assigning a database datasource does the same internally.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |