Pivot Table No data Shown

Hi i would like to show the Pivot Table even with empty data, is it possible ?

image

Thank you,

Matar

Hello!

PivotTable without data does not create columns and rows. You can add this selector to your custom theme:

.jmix-pivot-table-empty {
  &:after {
    content: "";
  }
  > * {
    display: table;
  }
}

However the PivotTable will look like the following:
image