D6 Pro, Teechart 7.07
I am adding tlineseries to a chart at runtime, and when I set
chartseries.Pointer.Style:=psrectangle I actually get a diamond drawn on the chart. Is this a bug or am I missing something/
cheers
Sean
pointerstyle:=psrectangle
Hi seanmurphy,
the following code works well with TeeChart 7.07 and Delphi 6:
Please, please send us a simple example project we can run "as-is" to reproduce the problem here.
You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup or send them via our new upload page at http://www.steema.net/upload/.
the following code works well with TeeChart 7.07 and Delphi 6:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
var tmpSeries: TLineSeries;
begin
tmpSeries:=TLineSeries.Create(self);
Chart1.AddSeries(tmpSeries);
tmpSeries.Pointer.Visible:=true;
tmpSeries.Pointer.Style:=psRectangle;
tmpSeries.FillSampleValues();
end;
You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup or send them via our new upload page at http://www.steema.net/upload/.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
-
- Newbie
- Posts: 48
- Joined: Fri Mar 12, 2004 5:00 am