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 TXAMLExportFormat.Create do
try
Panel:=Chart1;
SaveToFile('c:\test.xaml');
finally
Free;
end;
end;
Alternative method:
TeeSaveToXAMLFile(Chart1,'c:\test.xaml');