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?
WPF question(s)
Re: WPF question(s)
Hello dunion,
I hope will helps.
Thanks,
It is already in wish-list with number (TW16014180) to be considerate to inclusion in next versions of TeeChartWPF.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?
Yes you can export image and data using TeeChartWPf with different formats. Some examples are next:Is there any built in export (to an image format or/and data format) in the WPF side?
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");
Thanks,
Best Regards,
Sandra Pazos / 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 |