TLineSeries Point Border Color

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Command Alkon
Newbie
Newbie
Posts: 4
Joined: Tue Jul 01, 2003 4:00 am

TLineSeries Point Border Color

Post by Command Alkon » Wed Aug 18, 2004 12:12 am

Hi,

we have a TeeChart 6.01 with Delphi 6 and all the latest updates.

I have declared a variable like this.

Code: Select all

      aLineSeries: TLineSeries;
and using it like this.

Code: Select all

      aLineSeries.Pointer.Visible := True;
      aLineSeries.Pointer.HorizSize := 2;
      aLineSeries.Pointer.VertSize := 2;
      aLineSeries.Pointer.Style := psRectangle;
      aLineSeries.Pointer.Color := aLineSeries.Color;
Now I don't seem to find a way to change the border color of the Pointer or Point :cry: I can change it while I am looking at the chart by clicking the edit button but I want to do it in code and make the point Border color same as the point color.

Thanks for any inputs in advance.

Cheers

Marjan
Site Admin
Site Admin
Posts: 745
Joined: Fri Nov 07, 2003 5:00 am
Location: Slovenia
Contact:

Post by Marjan » Wed Aug 18, 2004 7:01 am

Hi.

How about this:

Code: Select all

alineSeries.Pointer.Visible := True;
alineSeries.Pointer.Pen.Style := psDot;
alineSeries.Pointer.Pen.Color := clWhite;
Marjan Slatinek,
http://www.steema.com

Post Reply