Is there any way to get away the sumary icons from headers. I want to see only the summary result in the bottom.
You can hide it using this style,
<Style TargetType="{x:Type igDP:SummaryButton}">
<Setter Property="Height" Value="0"/>
</Style>
but you can also modify the control template of the LabelPresenter and remove it from there. The default template you can find in the DefaultStyles directory.
Hi
The suggested answer is not sufficient. Is there a way to remove the reserve space as well?
Hello,
As John suggested in his post, you can copy the default Style of the LabelPresenter and remove the SummaryButton from its Template. You can find the default Styles here by default:
C:\Program Files (x86)\Infragistics\2013.2\WPF\DefaultStyles\DataPresenter\DataPresenterGeneric_Express.xaml file
Hope this helps you.