MindFusion.Charting Programmer's Guide

AxesChart.SaveToXml Method

See Also
 





Saves the Chart to an XML document.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public override void SaveToXml (
    XmlDocument document
)

Visual Basic  Copy Code

Public Overrides Sub SaveToXml ( _
    document As XmlDocument _
)

JavaScript  Copy Code

function SaveToXml (document)

 Parameters

document
An XmlDocument object that allows adding data to the XML document.

 Remarks

Saves the chart data as tags in an XML document. Use LoadFromXml to restore the chart data later.

 See Also