We are currently working with Delphi 5 / TeeChart Pro 5. Will our Delphi version also be supported by v8? If so, I am interested in beta-testing.
Will there be much to do switching from v5 to v8?
Search found 2 matches
- Wed Mar 07, 2007 6:11 am
- Forum: VCL
- Topic: Strange behavior of ErrorSeries with log axis
- Replies: 3
- Views: 2960
- Sat Mar 03, 2007 11:36 am
- Forum: VCL
- Topic: Strange behavior of ErrorSeries with log axis
- Replies: 3
- Views: 2960
Strange behavior of ErrorSeries with log axis
Hello, I created a simple chart, added an ErrorSeries and filled it with some values: procedure TForm1.Button1Click(Sender: TObject); var lauf: Integer; begin for lauf := 10 to 100 do begin Series1.AddErrorBar(lauf, lauf, 0.2); end; end; Thats what it is looking like after that. Okay, no problem her...