I use the excel plug-in to publish them, then i copy the cxml and the folder to my .web project and when i run the pivot works and has the categories but doesnt show images.
xaml code:
<StackPanel>
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel>
home code:
PivotViewer.LoadCollection("http://localhost:2287/Test2.cxml",null);
Thanks in advance.
@stuart @alison Thank you bothI found the solution. When you have the pivot in a container like stackpanel, you have to put the width and height. If you do not declare its height and width they are infinite and the images wont render. This is how i solved it.
<StackPanel Height="437" Width="960">
<pivot:PivotViewer x:Name="PivotViewer" Height="310"></pivot:PivotViewer>
</StackPanel>