Something like below and make that complete column of radio button as a group, so that it can be toggled.
columns: ColumnConfig[] = [
{
name: 'radio',
displayName: 'Radio',
type: 'radio',
options: {
dataSource: '',
radioButtons: [{ text: '', value: 'Y' }]
}
}
]