This column style displays article (body) or wire story words, and also the height in lines of article body text:
<ColStyle Name="Wrd" Width="60" Height="0" SortName="Words">
<CellTemplate ObjectTypeName="article">
<TextBlock VerticalAlignment="Top"
HorizontalAlignment="Center"
Text="{Binding Path=[article.bodyNWords]}"/>
</CellTemplate>
<CellTemplate ObjectTypeName="story">
<TextBlock VerticalAlignment="Top"
HorizontalAlignment="Center"
Text="{Binding Path=[story.nWords]}"/>
</CellTemplate>
</ColStyle>
<ColStyle Name="Ln" Width="60" Height="0" SortName="Lines">
<CellTemplate ObjectTypeName="article">
<TextBlock VerticalAlignment="Top"
HorizontalAlignment="Center"
Text="{Binding Path=[article.bodyNLines]}"/>
</CellTemplate>
</ColStyle>