Hello,
Why I have to check the boxes of TeeChart components to see them appear under delphi 7, windows 10 pro with
TeeChart 7.12?
However, I removed before installation, the old version of TChart and the Tee70
?
Thank you for your help
Didier
pulsar.pulsar@orange.fr
Search found 42 matches
- Tue Sep 17, 2019 9:27 pm
- Forum: VCL
- Topic: Install teechart 7.12 on delphi 7
- Replies: 1
- Views: 45386
- Sat May 23, 2009 3:00 pm
- Forum: VCL
- Topic: TeeChartPro V7.12 Draw a graph
- Replies: 4
- Views: 10610
- Sat May 09, 2009 11:22 am
- Forum: VCL
- Topic: TeeChartPro V7.12 Draw a graph
- Replies: 4
- Views: 10610
- Mon May 04, 2009 11:47 am
- Forum: VCL
- Topic: Teechartpro 7.12 Drawing a graph
- Replies: 25
- Views: 47698
- Mon May 04, 2009 11:37 am
- Forum: VCL
- Topic: TeeChartPro V7.12 Draw a graph
- Replies: 4
- Views: 10610
TeeChartPro V7.12 Draw a graph
Hi Narcis, I have a set of points (x, y) which I wish to make the graph. everything works well and it's appears : // test.csv q;ha 0,5;25,3 0,55;24,7 0,6;24 0,65;23,5 0,7;23 0,8;22,2 0,9;21,4 1;20,8 1,1;20,2 1,2;19,7 1,3;19,2 1,4;18,8 1,6;18,1 1,8;17,5 2;17 2,25;16,5 2,5;15,8 2,75;15,4 3;15 here is ...
- Wed Apr 29, 2009 2:30 pm
- Forum: VCL
- Topic: Teechartpro 7.12 Drawing a graph
- Replies: 25
- Views: 47698
I think I have found :
have you better ?
Didier
Code: Select all
Series3.AddXY(tc,y1);
Series3.AddXY(tc,y2);
Didier
- Wed Apr 29, 2009 2:05 pm
- Forum: VCL
- Topic: Teechartpro 7.12 Drawing a graph
- Replies: 25
- Views: 47698
Of course, I tried this :
But, is not good..
Didier
Code: Select all
Series3.AddXY(Series1.XValue[Trunc(tc)], Series1.YValue[Trunc(y1)]);
Series3.AddXY(Series2.XValue[Trunc(tc)], Series2.YValue[Trunc(y2)]);
But, is not good..
Didier
- Wed Apr 29, 2009 1:58 pm
- Forum: VCL
- Topic: Teechartpro 7.12 Drawing a graph
- Replies: 25
- Views: 47698
Hi Narcis, Thank you very much We are soon at the end of the problem .. But a small concern of conversion that I do not understand because AddXY expected and provide double but the message indicates an incompatibility between integer and double .. ?? Look at the code : unit Unit1; interface uses Win...
- Tue Dec 02, 2008 10:01 am
- Forum: VCL
- Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
- Replies: 5
- Views: 14130
- Fri Nov 28, 2008 1:54 pm
- Forum: VCL
- Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
- Replies: 5
- Views: 14130
Hi Narcis, Sorry you have asked to quickly .. The solution you propose (parser) is interesting but seems too heavy for the moment .. the error message is: The project caused a Project1.exe class EConcertError exception with the message "x+2' is not a floating point value correcte. I am not trying to...
- Fri Nov 28, 2008 10:14 am
- Forum: VCL
- Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
- Replies: 5
- Views: 14130
- Tue Nov 25, 2008 2:12 pm
- Forum: VCL
- Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
- Replies: 5
- Views: 14130
TeeChart Pro v 7.12 drawing a function y= f(x)
Hi Narcis, here is my code : PROCEDURE TForm1.TeeFunction1Calculate(Sender: TCustomTeeFunction; CONST x: Double; VAR y: Double); BEGIN IF (Edit1.Text = Null) OR (Edit1.Text = '') THEN exit; y := StrToFloat(Edit1.Text); END; PROCEDURE TForm1.Edit1KeyDown(Sender: TObject; VAR Key: Word; Shift: TShiftS...
- Mon Nov 24, 2008 3:58 pm
- Forum: VCL
- Topic: custom function
- Replies: 3
- Views: 9253
- Mon Nov 24, 2008 10:54 am
- Forum: VCL
- Topic: custom function
- Replies: 3
- Views: 9253
Equation
Hi Narcis, I would build a program in delphi with TeeChart so that the user can enter the aquatic function and click on a display its image. How will introduce the equation y:= f (x) in the code of the event TForm1.TeeFunction1Calculate (Sender: TCustomTeeFunction; CONST x: Double; VAR y: Double); k...
- Thu Sep 25, 2008 2:23 pm
- Forum: VCL
- Topic: serie and label in a TDBChart v 7.12
- Replies: 1
- Views: 5727
serie and label in a TDBChart v 7.12
Hi Narcis, In fact, I work with a TDBChart and in the table, I have a field MOIS (integer) and I would put this label in clear at runtime : Here is the code : -- -- const LibelMois: array[1..12] of string = ('janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octob...