Page 1 of 1

The LinePen property of the points series

Posted: Tue Sep 14, 2004 4:10 am
by 8121155
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!

Posted: Tue Sep 14, 2004 6:44 am
by Marjan
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;