Change Text Alignment in UX Grid

What advanced setting can we use to change the text alignment for a grid column. We have a grid column that shows an emoji and we would like that to be centered in the cell.

image

1 Like

You should be able to use the built-in handsontable cell text alignment classes for this.

"columnFormat": {
    "Group Status":
        [ 
            {"className":"htCenter"}
        ]
}
3 Likes