Search found 9 matches

by MegaSoftware
Wed Jan 14, 2004 7:16 pm
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

Ok, I modified the code so I am not changing any of the TChartScrollBar's properties. I get the same behavior. I've sent you an email with three screen shots to show what's happening.
by MegaSoftware
Fri Dec 19, 2003 5:47 pm
Forum: VCL
Topic: is anybody doing support here???
Replies: 0
Views: 8160

is anybody doing support here???

I've been waiting to hear about a problem I posted in another thread entitled "working with large datasets". I'm trying to figure out how to keep the h-axis from adjusting itself improperly.
by MegaSoftware
Wed Dec 17, 2003 1:58 am
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

I'm waiting to hear if there is a way to fix this problem...

We have data that has no negative values, but the scrolling mechanism I've gotten to work insists on showing a bunch of negative axis space.

How can this be remedied? Is there another way to handle this kind of zoom/scrolling?
by MegaSoftware
Thu Dec 11, 2003 9:18 pm
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

After further investigation, it appears that the ChartScrollBar object ignores the Automatic setting of the chart it's attached to and changes the Min and Max properties so they're [-n,n] where n = (ChartScrollBar.Max-ChartScrollBar.Min)/2. I set up a ChartScrollBar1Change handler and tried resettin...
by MegaSoftware
Thu Dec 11, 2003 6:16 pm
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

Ok, through some trial-and-error, I've come up with the following chunk of code. It's located in a Redraw function that's called each time a spinner value changes. if (ScrollFactor_spin.Value = 1) then begin Chart.BottomAxis.Automatic := true; Chart.AllowPanning := pmNone; ChartScrollBar1.Enabled :=...
by MegaSoftware
Wed Dec 10, 2003 1:53 am
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

Thanks, Marjan, this helps a little. I guess what I'm looking for is something more along the lines of: how do I implement the scrolling within TeeChart? The data sampling isn't a problem -- we're used to dealing with that issue. Can you point me to an example of how to deal with situations where th...
by MegaSoftware
Tue Dec 09, 2003 7:27 pm
Forum: VCL
Topic: working with large data sets
Replies: 2
Views: 10548

oops... I didn't notice this. Thanks for pointing it out!
by MegaSoftware
Tue Dec 09, 2003 7:26 pm
Forum: VCL
Topic: working with large datasets
Replies: 8
Views: 20944

working with large datasets

We're working with very large data sets (10^5..10^8) and we need the ability to display data in scrollable chunks. For example, we need to render 10^6 data points into, say, 10^5 pixels. However, we want the user to be able to scroll across the display window width, eg., 500 or 1000 pixels, without ...
by MegaSoftware
Mon Dec 08, 2003 10:12 pm
Forum: VCL
Topic: working with large data sets
Replies: 2
Views: 10548

working with large data sets

We're working with very large data sets (O(6)-O(8)) and we need the ability to display data in scrollable chunks. For example, we need to render 10^6 data points into, say, 10^5 pixels. However, we want the user to be able to scroll across the display window width, eg., 500 or 1000 pixels, without h...