New to Kendo UI for Angular? Start a free 30-day trial

Represents the callback used by the groupColumn option of the GroupableSettings interface. Allows customizing each synthesized group column individually. Applicable when displayMode is 'multipleColumns'.

Example:
TS
groupColumnCallback({ field }) {
  return {
    width: field === 'Category.CategoryName' ? 260 : 160,
    title: field === 'Category.CategoryName' ? 'Category' : field,
    reorderable: false
  };
}
Not finding the help you need?
Contact Support