TVMLExportFormat
Hierarchy Methods
Unit
TeeVMLCanvas
Description
This class implements an "export format", to convert Charts into VML format.
VML (Vector Markup Language) is a vectorial format defined at:
http://www.w3.org/TR/NOTE-VML
Microsoft's Internet Explorer (version 5 and up) can display VML files.
Example:
procedure TForm1.Button1Click(Sender: TObject);
begin
with TVMLExportFormat.Create do
try
Panel:=Chart1;
SaveToFile('c:\test.htm');
finally
Free;
end;
end;
You can then use Internet Explorer to open the test.htm file.
Alternative method:
TeeSaveToVMLFile(Chart1,'c:\test.htm');