Search found 10 matches
- Fri Apr 01, 2005 2:10 pm
- Forum: VCL
- Topic: THighLowSeries and seriesText ?
- Replies: 1
- Views: 4001
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(...
- Fri Apr 01, 2005 2:08 pm
- Forum: VCL
- Topic: bug whit TWindRoseSeries
- Replies: 3
- Views: 6529
bug whit TWindRoseSeries
Hello,
I would like to submit a bug whit TWindRoseSeries. If I try to draw:
I have a point in front of E and not in front of W... so I must draw:
to be right.
Best Regard's
cyril
I would like to submit a bug whit TWindRoseSeries. If I try to draw:
Code: Select all
Series1.addXY(270, 10);
Code: Select all
Series1.addXY(360-270, 10);
Best Regard's
cyril
- Fri Mar 18, 2005 3:26 pm
- Forum: VCL
- Topic: ColorGridSeries, Color and Index...
- Replies: 0
- Views: 5006
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...
- Thu Mar 10, 2005 2:23 pm
- Forum: VCL
- Topic: ColorGrid, high number points and zoom...
- Replies: 8
- Views: 13029
- Thu Mar 10, 2005 6:59 am
- Forum: VCL
- Topic: ColorGrid, high number points and zoom...
- Replies: 8
- Views: 13029
- Tue Mar 08, 2005 8:45 am
- Forum: VCL
- Topic: ColorGrid, high number points and zoom...
- Replies: 8
- Views: 13029
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...
- Wed Mar 02, 2005 12:36 pm
- Forum: VCL
- Topic: ColorGrid, high number points and zoom...
- Replies: 8
- Views: 13029
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...
- Thu Feb 24, 2005 11:08 am
- Forum: VCL
- Topic: Dynamic TColorGridSeries or other solution?
- Replies: 1
- Views: 4348
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
- Wed Feb 23, 2005 12:40 pm
- Forum: VCL
- Topic: Creat LineSeries with ColorGridSeries Y Values?
- Replies: 2
- Views: 5146
- Fri Feb 18, 2005 10:00 am
- Forum: VCL
- Topic: Creat LineSeries with ColorGridSeries Y Values?
- Replies: 2
- Views: 5146
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...