I have a TChart with a TChartShape and A TLineSeries that correctly display on the screen.
Unfortunately with I copy the TChart to the clipboard and print it out within Word, the TChartShape hides the TLineSeries. Is there a way to make sure the TChartShape is in the background?
TChartShape and TLineSeries foreground/background
-
- Newbie
- Posts: 2
- Joined: Fri Nov 15, 2002 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi ijourneaux,
You can use ExchangeSeries method like:
You can use ExchangeSeries method like:
Code: Select all
Chart1.ExchangeSeries(Chart1[0],Chart1[1]);
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: 2
- Joined: Fri Nov 15, 2002 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi ijourneaux,
Then you can try using the series name instead of it's chart index as:
Then you can try using the series name instead of it's chart index as:
Code: Select all
Chart1->ExchangeSeries(Series1,Series2);
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 |