TEPSExportFormat

TEPSExportFormat
Hierarchy     Properties     Methods     

Unit
TeePSCanvas

Description
This class is used to export TeeCharts to EPS (Encapsulated PostScript) format.

Example:

Uses TeePSCanvas;

// save panel or chart to filename in EPS (PostScript) format
with TEPSExportFormat.Create do
try
Panel:=Chart1; // <-- the chart
Height:=400;
Width:=250;
SaveToFile('mychart.eps');
finally
Free;
end;

Alternative (easier way) using helper method:

TeeSaveToPSFile( Chart1, 'mychart.eps', 400, 250 );