c# - My PivotViewer isn't displaying any information -


i'm trying learn how use pivotviewer control silverlight. used excel tool create collection , output files folder called 'asdf'. copied folder of it's contents d: partition , here code use call collection:

using system; using system.collections.generic; using system.linq; using system.net; using system.windows; using system.windows.controls; using system.windows.documents; using system.windows.input; using system.windows.media; using system.windows.media.animation; using system.windows.shapes;  namespace pivottest {     public partial class mainpage : usercontrol     {         public mainpage()         {             initializecomponent();             pivot.loadcollection(@"d:\asdf\my.cxml", string.empty);                     }     } } 

here's screenshot of what's inside folder , in browser when running application. alt text

alt text

any suggestions on i'm doing wrong? help!

my guess pivotviewer not allowed access xml file on local drive. have put xml file on web server (i.e. localhost:64413) , access through http.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

aspxgridview - Devexpress grid - header filter does not work if column is initially hidden -

c# - How to execute a particular part of code asynchronously in a class -