MindFusion.Charting Programmer's Guide

BarChart.SaveToXml Method

See Also
 





Saves the BarChart 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 holds the settings of the BarChart in the form of XML.

 Remarks

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

 See Also