Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
735
How can XamGrid/XamWebChart ItemSource convert into XML/XDocument
posted

Hi,

I am using few infragistics controls.

Like XamGrid, XamWebChart, XamRadialGauge etc.

Now my requirement save that ItemSource. So i am converting into  xml format. and pass through

WCF services.

how can I change the ItemSource into Xdocument/ XML/XElement?

I am using that code but its not working properly

-------------------------------------------------------------------

          XamGrid myGrid;

           System.Collections.IEnumerable iEnumerable = myGrid.ItemsSource;
            XDocument _x = new XDocument(myGrid.ItemsSource);

-------------------------------------------------------------------

Kindly suggest me