XAML Quick Reference

This topic is dedicated to providing a quick overview of the XAML used to create a the OLAP for Silverlight controls.

To get started developing, add a c1 namespace declaration in the root element tag:

xmlns:c1="http://schemas.componentone.com/winfx/2006/xaml"

Below is the XAML:

<!-- olap page -->

<c1:C1OlapPage HorizontalAlignment="Left" Margin="28,12,0,0" Name="c1OlapPage1" VerticalAlignment="Top" Height="426" Width="528" />

 

<!-- olap panel -->

<c1:C1OlapPanel HorizontalAlignment="Left" Margin="26,11,0,0" Name="c1OlapPanel1" VerticalAlignment="Top" Height="307" Width="393" />

 

<!-- olap grid -->

    <Border Style="{StaticResource _border}" Grid.Row="1" Grid.Column="1" >

      <c1:C1OlapGrid x:Name="_olapGrid" Margin="4" SortedColumn="_olapGrid_SortedColumn" />

    </Border>

 

    <!-- olap chart -->

    <Border Style="{StaticResource _border}" Grid.Row="1" Grid.Column="3" >

      <c1:C1OlapChart x:Name="_olapChart" Margin="4" />

    </Border>


Send us comments about this topic.
Copyright © GrapeCity, inc. All rights reserved.