Search found 9 matches
- Wed Jan 14, 2004 7:16 pm
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
- Fri Dec 19, 2003 5:47 pm
- Forum: VCL
- Topic: is anybody doing support here???
- Replies: 0
- Views: 9169
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.
- Wed Dec 17, 2003 1:58 am
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
- Thu Dec 11, 2003 9:18 pm
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
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...
- Thu Dec 11, 2003 6:16 pm
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
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 :=...
- Wed Dec 10, 2003 1:53 am
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
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...
- Tue Dec 09, 2003 7:27 pm
- Forum: VCL
- Topic: working with large data sets
- Replies: 2
- Views: 12093
- Tue Dec 09, 2003 7:26 pm
- Forum: VCL
- Topic: working with large datasets
- Replies: 8
- Views: 22275
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 ...
- Mon Dec 08, 2003 10:12 pm
- Forum: VCL
- Topic: working with large data sets
- Replies: 2
- Views: 12093
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...