WPF question(s)

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
dunion
Newbie
Newbie
Posts: 2
Joined: Tue Dec 14, 2010 12:00 am

WPF question(s)

Post by dunion » Fri Jan 07, 2011 12:48 am

Is there any support in WPF for something like the teechart editor/controlbar for a chart that would allow the user to modify the charts, etc., as per winforms?
Is there any built in export (to an image format or/and data format) in the WPF side?

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: WPF question(s)

Post by Sandra » Mon Jan 10, 2011 12:48 pm

Hello dunion,
Is there any support in WPF for something like the teechart editor/controlbar for a chart that would allow the user to modify the charts, etc., as per winforms?
It is already in wish-list with number (TW16014180) to be considerate to inclusion in next versions of TeeChartWPF.
Is there any built in export (to an image format or/and data format) in the WPF side?
Yes you can export image and data using TeeChartWPf with different formats. Some examples are next:

Code: Select all

           //Image
            tChart1.Export.Image.JPEG.Save(@"TeeChart1.jpeg");
            tChart1.Export.Image.Bitmap.Save(@"TeeChart1.bmp");
            tChart1.Export.Image.GIF.Save(@"TeeChart1.gif");
            tChart1.Export.Image.PNG.Save(@"TeeChart1.png");
            tChart1.Export.Image.PDF.Save(@"TeeChart1.pdf");          
            //Data
            tChart1.Export.Data.Text.Save(@"TeeChart1.txt");
            tChart1.Export.Data.Excel.Save(@"TeeChart1.xls");
            tChart1.Export.Data.XML.Save(@"Teechart1.xaml");
I hope will helps.

Thanks,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply