Return XML object representing graph's data

Namespace:  am.Charts
Assembly:  am.Charts (in am.Charts.dll)
Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public virtual XmlNode GetDataXml(
	XmlDocument xmlDoc,
	bool graphSettingsInData,
	XyChartValueDataTypes xType,
	XyChartValueDataTypes yType,
	string durationInputFormat
)
Visual Basic (Declaration)
Public Overridable Function GetDataXml ( _
	xmlDoc As XmlDocument, _
	graphSettingsInData As Boolean, _
	xType As XyChartValueDataTypes, _
	yType As XyChartValueDataTypes, _
	durationInputFormat As String _
) As XmlNode
Visual C++
public:
virtual XmlNode^ GetDataXml(
	XmlDocument^ xmlDoc, 
	bool graphSettingsInData, 
	XyChartValueDataTypes xType, 
	XyChartValueDataTypes yType, 
	String^ durationInputFormat
)

Parameters

xmlDoc
Type: System.Xml..::.XmlDocument
XMLDocument in which's context the node should be created
graphSettingsInData
Type: System..::.Boolean
If true graph's settings are included along with data
xType
Type: am.Charts..::.XyChartValueDataTypes
Data type for the X value
yType
Type: am.Charts..::.XyChartValueDataTypes
Data type for the Y value
durationInputFormat
Type: System..::.String
Format for the duration data

Return Value

XmlNode representing graph's data

See Also