Search found 42 matches

by Clara Genermont
Tue Sep 17, 2019 9:27 pm
Forum: VCL
Topic: Install teechart 7.12 on delphi 7
Replies: 1
Views: 29333

Install teechart 7.12 on delphi 7

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
by Clara Genermont
Sat May 23, 2009 3:00 pm
Forum: VCL
Topic: TeeChartPro V7.12 Draw a graph
Replies: 4
Views: 8809

Thank you very much Yeray for your help

Didier
by Clara Genermont
Sat May 09, 2009 11:22 am
Forum: VCL
Topic: TeeChartPro V7.12 Draw a graph
Replies: 4
Views: 8809

Hi Narcis,

thank you for your attention
but

Why is it necessary to specify 'X' instead of 'q' as the file column. Csv is defined by 1 or 2?

Thank you for your help

Didier
by Clara Genermont
Mon May 04, 2009 11:47 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38116

Hi Yeray

thank you,

Answers were cross ..

Didier
by Clara Genermont
Mon May 04, 2009 11:37 am
Forum: VCL
Topic: TeeChartPro V7.12 Draw a graph
Replies: 4
Views: 8809

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 ...
by Clara Genermont
Wed Apr 29, 2009 2:30 pm
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38116

I think I have found :

Code: Select all

 Series3.AddXY(tc,y1);   
 Series3.AddXY(tc,y2);
have you better ?


Didier
by Clara Genermont
Wed Apr 29, 2009 2:05 pm
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38116

Of course, I tried this :

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
by Clara Genermont
Wed Apr 29, 2009 1:58 pm
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38116

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...
by Clara Genermont
Tue Dec 02, 2008 10:01 am
Forum: VCL
Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
Replies: 5
Views: 11643

thank you very much :wink:

Didier
by Clara Genermont
Fri Nov 28, 2008 1:54 pm
Forum: VCL
Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
Replies: 5
Views: 11643

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...
by Clara Genermont
Fri Nov 28, 2008 10:14 am
Forum: VCL
Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
Replies: 5
Views: 11643

Hello Narcis...

Thank you for your HELP

Didier
by Clara Genermont
Tue Nov 25, 2008 2:12 pm
Forum: VCL
Topic: TeeChart Pro v 7.12 drawing a function y= f(x)
Replies: 5
Views: 11643

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...
by Clara Genermont
Mon Nov 24, 2008 3:58 pm
Forum: VCL
Topic: custom function
Replies: 3
Views: 8011

Thank you Narcis !

another question :

how to revive the event "TeeFunction1Calculate"
because neither the repaint nor the invalidate work?

Didier
by Clara Genermont
Mon Nov 24, 2008 10:54 am
Forum: VCL
Topic: custom function
Replies: 3
Views: 8011

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...
by Clara Genermont
Thu Sep 25, 2008 2:23 pm
Forum: VCL
Topic: serie and label in a TDBChart v 7.12
Replies: 1
Views: 4737

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...