TXAMLExportFormat
 
 
 

TXAMLExportFormat
Hierarchy     Methods     

Unit
TeeXAMLCanvas

Description
This class implements an "export format", to convert Charts into XAML format.

XAML format (Extensible Application Markup Language) is defined at:

http://en.wikipedia.org/wiki/Extensible_Application_Markup_Language

Example:

procedure TForm1.Button1Click(Sender: TObject);
begin
with T
XAMLExportFormat.Create do
try
Panel:=Chart1;
SaveToFile('c:\test.
xaml');
finally
Free;
end;
end;

Alternative method:

TeeSaveToXAMLFile(Chart1,'c:\test.xaml');





Send us Help Feedback. Copyright 1995-2013 © by Steema Software. All Rights Reserved.