The LinePen property of the points series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Albert
Newbie
Newbie
Posts: 16
Joined: Fri Nov 15, 2002 12:00 am
Location: Taipei, Taiwan, Republic of China
Contact:

The LinePen property of the points series

Post by Albert » Tue Sep 14, 2004 4:10 am

Hi,

I try to show the connection lines in the points series.
I use the code followed:
Points1.LinePen.Color=Color.Red
Points1.LinePen.Visisble=true

But there is no the connection lines showed.

Does the points series have LinePen property?

Thanks in advance!

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

Post by Marjan » Tue Sep 14, 2004 6:44 am

Hi.

The points series can show only points and no connecting lines. If you want to show points and connecting lines, then you can use the line series with it's Pointer.Visible property set to true:

Code: Select all

line1.FillSampleValues(20);
line1.Pointer.Visible = true;
Marjan Slatinek,
http://www.steema.com

Post Reply