Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I would actually use the standard Grid (not the DataGrid). It seems ankward at the beginning but after you learn how to use it, you're gonna use it everywhere! :)</p> <p>Here is an example to display your data (its not complete but you see the point):</p> <pre><code>&lt;Grid x:Name="grdData" Background="White"&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Width="Auto" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;ColumnDefinition Width="Auto" MinWidth="50" /&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;RowDefinition Height="Auto" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;TextBlock FontWeight="Bold" FontSize="14" Padding="10"&gt;Annualized Statistics&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="1"&gt;1Yr&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="2"&gt;2Yr&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="3"&gt;3Yr&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="4"&gt;4Yr&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="5"&gt;5Yr&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="6"&gt;1st Half&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="7"&gt;2nd Half&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="1" Grid.Column="8"&gt;Incept&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="0"&gt;Return&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="1"&gt;(4.81)&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="2"&gt;(2.25)&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="3"&gt;1.01&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="4"&gt;4.30&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="5"&gt;(0.61)&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="6"&gt;(18.75)&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="7"&gt;5.06&lt;/TextBlock&gt; &lt;TextBlock Grid.Row="2" Grid.Column="8"&gt;(7.48)&lt;/TextBlock&gt; &lt;Rectangle Grid.Column="5" Grid.Row="1" Grid.RowSpan="5" Fill="Black" Width="1" HorizontalAlignment="Right" /&gt; &lt;Rectangle Grid.Column="7" Grid.Row="1" Grid.RowSpan="5" Fill="Black" Width="1" HorizontalAlignment="Right" /&gt; &lt;/Grid&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload