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);
point series
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi jxv,
To achieve what you request you should use a line series and make its pointer visible:
To achieve what you request you should use a line series and make its pointer visible:
Code: Select all
line1->Pointer->Visible=true;
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |