ISeriesXMLSource
Hierarchy Properties Methods

Type Library
TeeChartx

Description
Use this component as an XML data provider to Series or Chart components.

Usage steps:

1) Set the Chart property to desired Chart.

2) Set the XML property to desired file containing series data in XML format.

3) Call the Open method or set Active property to True to import XML data.

Format :

The XML format must be the same as when exporting Series data to XML format.

Multiple series can coexist in the XML source.

The SeriesNode property can be set to choose an individual series.

Example [Visual Basic]:

With SeriesXMLSource1

.FileName = Label1.Caption

.Series = TChart1.Series(0)

' or Series may be passed as Index but you would then

' have to set the Chart for the source

'eg.

' .Chart = TChart1

' .Series = 0

.SeriesNode = "Series1"

.ValueSource = "Y"

.Open

End With