Source Code: Hosting Silverlight Pivot in Windows Azure

You can download this full VS2010 Solution and open in VS2010 admin mode. 

Edit MainPage.xaml.cs and enable to following line so you can use my prebuilt Pivot in your Code and then just press F5 to test sample in compute emulator:

private static readonly Uri s_GalaxiesCollectionUri = new Uri("https://galaxiespivot.cloudapp.net/ClientBin/galaxies.cxml");
public MainPage()
{
InitializeComponent();
pivotWidgets.LoadCollection(s_GalaxiesCollectionUri.ToString(), string.Empty);
}

The VS2010 Solution looks like as below:

 

Download the source code from: https://pivotviewerinazure.codeplex.com/