When trying to expand all rows in a Pivot Grid as follow:
const defaultRowAxes: PivotGridAxis[] = [
{ name: ['[Geography].[City]'],expand: true },
{ name: ['[Product].[Category]'],expand: true }
];
The "Geography" field is expanded whereas the "Product" field is not.
See the attached image for a visual description of the problem
The question is : how does one expand all rows/cols in a pivot grid in React?