Completed
Last Updated: 09 Aug 2016 08:02 by ADMIN
ADMIN
Hristo
Created on: 08 Aug 2016 11:47
Category: PivotGrid
Type: Bug Report
1
FIX. RadPivotGrid - incorrect layout update when you have set the AutoExpandColumnHeaders or AutoExpandRowHeaders properties to false and you change the function type of an already added aggregate
How to reproduce check the attached project and video

Workaround: handle the UpdateCompleted event and explicitly set the properties to true

public LocalDataSourceSerializerForm()
{
    InitializeComponent();

    this.radPivotGrid1.AutoExpandColumnHeaders = false;
    this.radPivotGrid1.AutoExpandRowHeaders = false;

    this.radPivotGrid1.UpdateCompleted += radPivotGrid1_UpdateCompleted;
}

private void radPivotGrid1_UpdateCompleted(object sender, EventArgs e)
{
    this.radPivotGrid1.AutoExpandColumnHeaders = true;
    this.radPivotGrid1.AutoExpandRowHeaders = true;
}



0 comments