Page 1 of 1

point series

Posted: Thu Mar 02, 2006 3:55 pm
by 9637797
I have several point series on a 2D chart. Using one of the point series, I would like to draw a line between the points. I am using MS visual C++ for .NET 2003 with tchart Version 2179.21171

this-> points1->Add(10.0, 10.0);
this-> points1->Add(10.0, 100.0);
this-> points1->Add(100.0, 10.0);
this-> points1->Add(100.0, 100.0);

Posted: Fri Mar 03, 2006 10:24 am
by narcis
Hi jxv,

To achieve what you request you should use a line series and make its pointer visible:

Code: Select all

line1->Pointer->Visible=true;