Virtual TChart?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Jim OBrien
Newbie
Newbie
Posts: 12
Joined: Thu Oct 11, 2007 12:00 am

Virtual TChart?

Post by Jim OBrien » Mon Apr 12, 2010 12:20 pm

Is there anywhere the concept of a set of chart series that are request there data when needed? I have an application that carries around a large amount of data, much of which needs to be plotted. Adding points to chart series essentially doubles the size of the data requirement. If there were instead a series type that could call (via an event-handler) me when it needed to know the Count of a particular series and the values for a particular index in a series, I could avoid the double storage issue, trading it for perhaps a modest speed decrease.

Thanks.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Virtual TChart?

Post by Yeray » Mon Apr 12, 2010 2:48 pm

Hi Jim,

Have you studied the possibility to store your data in a file and load the values you need only when you need them?
Right now, all the series need their arrays populated to be drawn and I can't think on a way to workaround this requirement.

On the other hand, if you can give us more information, maybe we could try to understand better your exact situation and think on a future series type that would try to optimize applications' weight (probably in detriment of speed). How would you expect the data to be given to the series?
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Jim OBrien
Newbie
Newbie
Posts: 12
Joined: Thu Oct 11, 2007 12:00 am

Re: Virtual TChart?

Post by Jim OBrien » Mon Apr 12, 2010 3:23 pm

I'm suggesting that a series be able to request the data when it's needed. So, e.g., the getter for XValues.Count would actually call an event, and the event handler would return the count. Similarly, the getter for XValues would call an event, returning the value for index i. This way, there would not be extra storage required for the data.

In other words, it's much the same virtual/delegation model available in e.g. TListView, where you can set OwnerData := true and handle the OnData* events to populate the list.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Virtual TChart?

Post by Yeray » Wed Apr 14, 2010 9:08 am

Hi Jim,

I've added your suggestion to the wish list to be studied for inclusion in future releases (TV52014796).
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Jim OBrien
Newbie
Newbie
Posts: 12
Joined: Thu Oct 11, 2007 12:00 am

Re: Virtual TChart?

Post by Jim OBrien » Wed Apr 14, 2010 11:47 am

Thanks. By the way, among the advantages of that kind of approach would be the ability to create a scrolling (along the x-axis) TChart that could request a new "window" of data when it was scrolled.

Post Reply