Page 1 of 1
WPF question(s)
Posted: Fri Jan 07, 2011 12:48 am
by 15658080
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?
Re: WPF question(s)
Posted: Mon Jan 10, 2011 12:48 pm
by 10050769
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,