Column configuration
Menu
Overview

Column Menu

export interface MenuProps {
  column: boolean;
  pin: boolean;
  filter: boolean;
  grid: boolean;
}

You can configure the column menu by passing the MenuProps object to the menu prop.

This menu allow user to:

  • Pin the column
  • Filter the column
  • Acces the grid settings
  • Manage group options

Properties

column

PropertyTypeDefaultDescription
columnbooleanfalseEnable/Disable the column menu

Shows column options in the menu.

  • Group by this column.
  • Remove groupping.
  • Expand all groups.
  • Collapse all groups.

pin

PropertyTypeDefaultDescription
pinbooleanfalseEnable/Disable the pin option

Shows pin option in the menu. This option allows to pin the column to the left or right.

filter

PropertyTypeDefaultDescription
filterbooleanfalseEnable/Disable the filter option

Shows filter option in the menu. This option allows to filter the column.

grid

PropertyTypeDefaultDescription
gridbooleanfalseEnable/Disable the grid option

Shows grid option in the menu. This option allows to access the grid settings.