Search found 10 matches

by cfalcot
Fri Apr 01, 2005 2:10 pm
Forum: VCL
Topic: THighLowSeries and seriesText ?
Replies: 1
Views: 3840

THighLowSeries and seriesText ?

Hello, Is it possible to use seriesText source with THighLowSeries? I try: with seriestextsource6 do begin fields.clear; headerlines := 2; fieldseparator := ';'; decimalseparator := '.'; filename := 'c:\WXT510\vent\' + jour +'.R1'; addfield('text',1); addfield('High',6); addfield('Low',7); addfield(...
by cfalcot
Fri Apr 01, 2005 2:08 pm
Forum: VCL
Topic: bug whit TWindRoseSeries
Replies: 3
Views: 6197

bug whit TWindRoseSeries

Hello,

I would like to submit a bug whit TWindRoseSeries. If I try to draw:

Code: Select all

Series1.addXY(270, 10);
I have a point in front of E and not in front of W... so I must draw:

Code: Select all

Series1.addXY(360-270, 10);
to be right.

Best Regard's

cyril
by cfalcot
Fri Mar 18, 2005 3:26 pm
Forum: VCL
Topic: ColorGridSeries, Color and Index...
Replies: 0
Views: 4698

ColorGridSeries, Color and Index...

Hello, I try to change the color of a cell in a ColorGridSeries. That is possible in "visu" mode but I don't find the way with command line. Could you explaine it? I don't understand the indexOf function in: Series1.DataSources.IndexOf({What here?}); Where Series1 is a ColorGrideSeries. Could you ex...
by cfalcot
Thu Mar 10, 2005 2:23 pm
Forum: VCL
Topic: ColorGrid, high number points and zoom...
Replies: 8
Views: 12267

Hi,

I can't give you my project because my article is too large. If you want I can put it on my FTP serveur and create an account for you.

Regard's
Cyril
by cfalcot
Thu Mar 10, 2005 6:59 am
Forum: VCL
Topic: ColorGrid, high number points and zoom...
Replies: 8
Views: 12267

Hi,

I don't know the way to use the link you give to me in Outlook. Could you help me to post you my ZIP file with the project?

Thanks

cyril
by cfalcot
Tue Mar 08, 2005 8:45 am
Forum: VCL
Topic: ColorGrid, high number points and zoom...
Replies: 8
Views: 12267

Hi, I think that problem in my projects appeared when I upgrade TeeChart V5 with TeeChart V6. Problems with zoom are solved by delete and recreate new chart. Problem with space limitation seems to be solved too. But this method can’t solve another problem with ChartEditor: I have not the Format menu...
by cfalcot
Wed Mar 02, 2005 12:36 pm
Forum: VCL
Topic: ColorGrid, high number points and zoom...
Replies: 8
Views: 12267

ColorGrid, high number points and zoom...

Hello, I'm playing again with high number points ColorGridSeries... I am very confused with the max number of points. I work on an old soft I did with TeeChart5(Demo) and Delphi 6. After doing compatibility correction for TeeChart6 and Delphi7 it works good BUT… On one ColorGridSeries I can draw per...
by cfalcot
Thu Feb 24, 2005 11:08 am
Forum: VCL
Topic: Dynamic TColorGridSeries or other solution?
Replies: 1
Views: 4225

Dynamic TColorGridSeries or other solution?

Hello, You say that TColorGridSeries are limited to 2000x2000 points. I work on an application of data analysis so I need to draw something like 9000*20 points (sometimes more…) Is it possible to make TColorGridSeries dynamic or to have bigger array without to buy TeeChart with source? Regards, Cyril
by cfalcot
Wed Feb 23, 2005 12:40 pm
Forum: VCL
Topic: Creat LineSeries with ColorGridSeries Y Values?
Replies: 2
Views: 4975

Hi!
:D - Thank's a lot your your answer! It will help me a lot.

Cyril
by cfalcot
Fri Feb 18, 2005 10:00 am
Forum: VCL
Topic: Creat LineSeries with ColorGridSeries Y Values?
Replies: 2
Views: 4975

Creat LineSeries with ColorGridSeries Y Values?

Hi, I have a TColorGridSeries (named Series10 - affected with ChartTool5) and a TLineSeries(named Series1). I would like use the X and Z value to draw the LineSeries. Is it possible to do somthing like this(?): For i:= 1 to 10 do Series1.AddXY(Series10.GetXZValue(ChartTool5.XValue, i), i); Unfortuna...