graph.groupNodeDefaults.style = new GroupNodeStyle({ tabFill: '#0b7189' })
// Set a label style with right-aligned text
graph.groupNodeDefaults.labels.style = new LabelStyle({
horizontalTextAlignment: 'right',
textFill: 'white'
})
// Place the label inside the tab area of the group node
// GroupNodeLabelModel is usually the most appropriate label model for GroupNodeStyle
graph.groupNodeDefaults.labels.layoutParameter =
new GroupNodeLabelModel().createTabParameter()