I am using a xamGrid in my Silverlight 4 app. I have set up some columns to have sum type summaries in code. Unfortunately, I still get the sum icon in the column header even though I do not want the user to be able to change it. I also need the screen real estate that this icon is taking. Is there any way to remove this icon yet still keep this as a summary column?
Thanks
Off of the individual column objects is a property called IsSummable
http://help.infragistics.com/NetAdvantage/Silverlight/2010.3/CLR4.0/?page=InfragisticsSL4.Controls.Grids.XamGrid.v10.3~Infragistics.Controls.Grids.Column~IsSummable.html
Changing the value to false will prevent the user from being able to change the existing summaries.