MindFusion.Charting Programmer's Guide

Chart.SaveToXml Method (XmlDocument)

See Also
 





Saves the Chart to an XML document.

Namespace: MindFusion.Charting
Assembly: MindFusion.Charting

 Syntax

C#  Copy Code

public virtual void SaveToXml (
    XmlDocument document
)

Visual Basic  Copy Code

Public Overridable Sub SaveToXml ( _
    document As XmlDocument _
)

JavaScript  Copy Code

function SaveToXml (document)

 Parameters

document
An XmlDocument instance that holds the settings and data of the chart.

 Remarks

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

 See Also