IHTMLExport
Hierarchy Properties Methods
Type Library
TeeChartx
Description
Series data can be exported to HTML tables. DataExport allows saving to file and copying to clipboard. There are several options when exporting to HTML format, such as include labels, point index, etc.
Example [Visual Basic]
With TChart1.Export.asHTML
.IncludeHeader = False
.IncludeIndex = True
.SaveToFile ("c:\temp\HTMLTable.htm")
End With