IExport.asHTML
IExport

property asHTML: IHTMLExport;

Type Library
TeeChartx

Description
The asHTML property accesses the HTMLExport class which configures the HTML page to which the selected series data is exported.

Example [Visual Basic]:

With TChart1

.AddSeries scLine

.Series(0).FillSampleValues 10

.Export.asHTML.IncludeHeader = True

.Export.asHTML.IncludeLabels = True

.Export.asHTML.SaveToFile "C:\TestFiles\TeeChart.htm"

End With