hi,
I need to change dynamically cellStyle of a PivotGridAggregateField
but the properties it's readonly
how can I do this ?
thanks
I need to change dynamically cellStyle of a PivotGridAggregateField
but the properties it's readonly
how can I do this ?
var rowField = new PivotGridAggregateField();RadPivotGrid1.Fields.Add(rowField);rowField.Aggregate = PivotGridAggregate.Sum;rowField.DataFormatString = "{0:C}";rowField.TotalFormatString = "{0:C}";var style = new Style();style.CssClass = "";//rowField.CellStyle = style;