TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
-
cfalcot
- Newbie
- Posts: 10
- Joined: Tue Nov 18, 2003 5:00 am
- Location: France
Post
by cfalcot » Fri Apr 01, 2005 2:10 pm
Hello,
Is it possible to use seriesText source with THighLowSeries?
I try:
Code: Select all
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('High',6);
series := series17;
active := true;
end;
but it didin't work... Is sombody know that?
Best regards
cyril
-
Pep
- Site Admin
- Posts: 3298
- Joined: Fri Nov 14, 2003 5:00 am
-
Contact:
Post
by Pep » Mon Apr 04, 2005 10:53 am
Hi cyril,
it works fine here, I think the problem is in the repeated line :
addfield('High',6);
It should be removed.