IExport
Hierarchy Properties Methods

Type Library
TeeChartx

Description
The Export interface contains the properties/methods for exporting Charts. Use the TChart.Export property.

See the TChart.Import property for information about how to reload TeeChart's native .tee format Chart templates.

Example [Visual Basic]:

'Exporting to PNG format to file

TChart1.Export.asPNG.SaveToFile("ChartImage.png")

Example [ASP - VBScript]

'Exporting to PNG image as stream

Response.BinaryWrite(TChart1.Export.asPNG.SaveToStream)