Search found 47 matches

by Xia
Thu Jan 20, 2011 8:59 am
Forum: VCL
Topic: TChart Canvas plot error
Replies: 3
Views: 5539

Re: TChart Canvas plot error

Hi Yeray,

You are right. The problem is caused by the lib and include path lists. After moving the TeeChart references to the top of the list, it works fine.

Thanks

Xia
by Xia
Wed Jan 19, 2011 10:50 am
Forum: VCL
Topic: TChart Canvas plot error
Replies: 3
Views: 5539

TChart Canvas plot error

Hi, I Have just installed the latest version of TeeChart 2010 and C++ Builder XE. When I uses TChart->Canvas->MoveTo() and LineTo() functions to plot a line on the Tchart canvas, it gives an access violation error. The program works fine with previous version. Is this a TeeChart 2010 bug? Regards Xia
by Xia
Fri Jun 04, 2010 8:57 am
Forum: VCL
Topic: Scroll Trace Window
Replies: 4
Views: 6101

Re: Scroll Trace Window

Thanks Narcis. It works fine.

Xia
by Xia
Thu Jun 03, 2010 4:23 pm
Forum: VCL
Topic: Scroll Trace Window
Replies: 4
Views: 6101

Re: Scroll Trace Window

Dear Narcis, Thanks for your reply. Sorry, I may not explain that clearly. I have traces displayed on the chart. When I move the mouse to the left side or right side of the chart rect area (outside the chart plotting area) and then press down and hold the left mouse button, I want to scroll the trac...
by Xia
Thu Jun 03, 2010 8:41 am
Forum: VCL
Topic: Scroll Trace Window
Replies: 4
Views: 6101

Scroll Trace Window

Hi, I am writing a trace display application using TChart and would like to scroll the trace when pressing and holding the left mouse button outside of the ChartRect, left side to scroll trace to the left and right side to scroll the trace to the right. I have added BottomAxis->SetMinMax() in the mo...
by Xia
Fri Mar 05, 2010 3:29 pm
Forum: VCL
Topic: Resize 3D depth in TeeCommand
Replies: 1
Views: 3548

Resize 3D depth in TeeCommand

Hi, I have a TChart with over 20 data series added. When I change TeeCommand to 3D display, select the Depth icon and then drag the mouse to resize the 3D, the chart disappears and it can not be recovered. If I rotate the Chart first and then change the depth, it works fine. Also, it only happens wh...
by Xia
Fri Feb 05, 2010 11:58 am
Forum: VCL
Topic: TColorGridSeries and BackImage
Replies: 4
Views: 6348

Re: TColorGridSeries and BackImage

Hi Yeray,

Thanks.

It works and I will recommend to use TChartImageTool when handling a large amount of 2D image data for fast display.

Regards

Xia
by Xia
Mon Feb 01, 2010 9:35 am
Forum: VCL
Topic: TColorGridSeries and BackImage
Replies: 4
Views: 6348

Re: TColorGridSeries and BackImage

Hi Narcis, Thanks for your reply. I understood that it is a large amount of data points to be processed and TColorGridSeries may not be suitable for a high resolution 2D image (>500x500). Filling data series doesn't take too much time, the main problem is the time to replot the image when resizing t...
by Xia
Fri Jan 29, 2010 4:11 pm
Forum: VCL
Topic: TColorGridSeries and BackImage
Replies: 4
Views: 6348

TColorGridSeries and BackImage

Hi, I would like to display over 20 2D images (each has a resolution of 768x560) on the screen using TColorGridSeries. I have tried three methods to speed up data filling and image display 1. Filling data series using a dynamic array; 2. Set series bitmap using Series->Bitmap = aBitmap 3. Set BackIm...
by Xia
Wed Nov 04, 2009 9:22 am
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Yeary,

Thanks. It works.

Regarding the grid on/off bug for TColorGridSeries, will this be fixed in next 3-6 months? If not, do you have a work-around solution?

Regards

Xiabing
by Xia
Mon Nov 02, 2009 2:00 pm
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Narcis, Thanks for your reply. I have already set IrregularGrid=false. TColorGridSeries is very powerful data series for 2D image display and it is just a bit slow for a higher resolution image. For the TDrawLineTool, I would like to handle differently when dragging the entire rectangle for repos...
by Xia
Thu Oct 29, 2009 12:08 pm
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Yeary, Thanks. You are right that I need to change the include and lib paths to new version. TDrawLineTools synchronisation works nicely for two TCharts. A drawback of this synchronisation when dragging the rectangle is that it is a bit slow for TColorGridSeries when having over 500x500 pixels. H...
by Xia
Tue Oct 27, 2009 9:26 am
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Yeary, Thanks for the example files. It has the same problems with TChart V8.02. But after upgrading to TChart V8.06, the program works fine, i.e. both Rectangles can be resized at the same time. So I think the problem is related to TChart V8.02. However, I have two other projects which worked fi...
by Xia
Thu Oct 22, 2009 4:22 pm
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Yeary, Thanks for the application code. I have created a project using your code, but I have to change accordingly since I am using CodeGear C++ Builder. I have the same problems. 1. When you resize the rectangle on the Chart1 by dragging the corner of the rectangle, the rectangle on the Chart2 d...
by Xia
Thu Oct 22, 2009 12:43 pm
Forum: VCL
Topic: Synchronize TDrawLineTools
Replies: 16
Views: 18568

Re: Synchronize TDrawLineTools

Hi Yeray, I have already added the OnMouseDown event at design time. If I understand correctly, the OnDragLine event is only called at the beginning of dragging (i.e when pressing the mouse down) and it will not response to mouse move with the left button pressed for resizing the rectangle. Regards ...