Plotting several lines within a single Series
-
- Newbie
- Posts: 35
- Joined: Wed Dec 12, 2007 12:00 am
Plotting several lines within a single Series
I would like to point to plot several distinct lines using CSeries without these lines being connected to each other. If I use AddXY to plot a 2D line, how do I plot another line, without it being connected to the first line?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi marathoner,
Sorry but I don't understand what are you exactly trying to achieve. Would you be so kind to give us some more details and, if possible, send us an image of your request?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Sorry but I don't understand what are you exactly trying to achieve. Would you be so kind to give us some more details and, if possible, send us an image of your request?
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
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 |
-
- Newbie
- Posts: 35
- Joined: Wed Dec 12, 2007 12:00 am
What I want to do is plot another line that is not connected to the 1st line. The 1st line should not be connected to the 2nd line
// 1st line
temp.AddXY(-0.5, -0.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2244, -0.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2244, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.1988, 0.8, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.0, 0.9, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.1988, 0.8, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2244, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2244, -0.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.5, -0.1, (LPCTSTR) "", clTeeColor);
// 2nd line
temp.AddXY(-0.5, 0.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2756, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2756, 1.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0, 1.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2756, 1.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2756, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.5, 0.1, (LPCTSTR) "", clTeeColor);
// 1st line
temp.AddXY(-0.5, -0.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2244, -0.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2244, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.1988, 0.8, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.0, 0.9, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.1988, 0.8, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2244, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2244, -0.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.5, -0.1, (LPCTSTR) "", clTeeColor);
// 2nd line
temp.AddXY(-0.5, 0.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2756, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(-0.2756, 1.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0, 1.1, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2756, 1.2, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.2756, 0.5, (LPCTSTR) "", clTeeColor);
temp.AddXY(0.5, 0.1, (LPCTSTR) "", clTeeColor);
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi marathoner,
Thanks for the information.
The best solution I can think of to achieve what you request is using 2 line series.
Thanks for the information.
The best solution I can think of to achieve what you request is using 2 line series.
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 |