IExport.asXML
IExport
property asXML: IXMLExport;
Type Library
TeeChartx
Description
The asXML property accesses the XMLExport class which configures the xml page to which the selected series data is exported.
With TChart1
.AddSeries scLine
.Series(0).FillSampleValues 10
.Export.asXML.IncludeHeader = True
.Export.asXML.IncludeLabels = True
.Export.asXML.SaveToFile "C:\TestFiles\TeeChart.xml"
End With