To Export/Copy Graphs along with legend's list box to other
To Export/Copy Graphs along with legend's list box to other
Hi
I have both TChart Componet for graphs drawing and its Legends are described in List box which is other componet
I want to Export or copy to graphs along with legends list box into other programs such as PowerPoint.
Regards,
Basamma
I have both TChart Componet for graphs drawing and its Legends are described in List box which is other componet
I want to Export or copy to graphs along with legends list box into other programs such as PowerPoint.
Regards,
Basamma
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Basamma,
Please see my reply at your other post.
Please see my reply at your other post.
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 |
How to get a print previer of TChart and List box
Hello,
I have a T-Chart component which has the graphs and one more list box component which has the list of legends of a graph... now on click of Preview button
I should get a preview of TChart and Legends List box... there shold be a option to move legends list box left,right,top , bottom
can u plz tell me how to do this?
I have a T-Chart component which has the graphs and one more list box component which has the list of legends of a graph... now on click of Preview button
I should get a preview of TChart and Legends List box... there shold be a option to move legends list box left,right,top , bottom
can u plz tell me how to do this?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Basamma,
Sorry but we don't understand what are you exactly trying to get. Could you please send us an example we can run "as-is" to reproduce the problem here?
You can post your files at news://steema.public.attachments newsgroup.
Thanks in advance.
Sorry but we don't understand what are you exactly trying to get. Could you please send us an example we can run "as-is" to reproduce the problem here?
You can post your files at news://steema.public.attachments newsgroup.
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 |
Hello,
I could not attach a file
As we in our company we are using Lotus Notes not Outlook
Now when I clicked on that link I got Server not found
My Major problem is now
1) In a single form I have a T-Chart Component which has Graph(Charts)
And I also Have a List box component which lists legends
2) I can Print Preview, Print and Even export to other programs to power point.
Only a T-Chart but not a List box which is there in the same form.
So I thought I can do like on clicking a button
Passing T-Chart and listbox to another form
Can u please tell me how to pass T-Chart and Listbox to another form?
Regards,
Basamma
I could not attach a file
As we in our company we are using Lotus Notes not Outlook
Now when I clicked on that link I got Server not found
My Major problem is now
1) In a single form I have a T-Chart Component which has Graph(Charts)
And I also Have a List box component which lists legends
2) I can Print Preview, Print and Even export to other programs to power point.
Only a T-Chart but not a List box which is there in the same form.
So I thought I can do like on clicking a button
Passing T-Chart and listbox to another form
Can u please tell me how to pass T-Chart and Listbox to another form?
Regards,
Basamma
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Basamma,
You can pass a reference to the TeeChart and ListBox objects you've created to another form in the Form's constructor, e.g.:
You can pass a reference to the TeeChart and ListBox objects you've created to another form in the Form's constructor, e.g.:
Code: Select all
AnotherForm aForm = new AnotherForm(TChart myChart, ListBox myListBox);
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Basamma,
You can also export the chart to a .ten file (TeeChart template file) and pass a memorystream containing the template file in the constructor.
For more information on how to do that please read Tutorial 12 - Exporting and Importing Charts which you'll find at TeeChart's program group.
You can also export the chart to a .ten file (TeeChart template file) and pass a memorystream containing the template file in the constructor.
For more information on how to do that please read Tutorial 12 - Exporting and Importing Charts which you'll find at TeeChart's program group.
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 |